-
Animation is very cool!
But it is also very slow on some devices, iPhone4 (6.1) and Xperia Active (4.0.4) to name a few. Is there any way to speed things up and maybe sacrifice visual appeal?
-
The way I am setting up the view for this method is
```
if (view == nil) {
UILabel *label = nil;
label = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 120, 30)] autorelease];
label.ba…
-
Hi
It's OK when numberOfItems is more than 2.
However, when numberOfItems = 1 or 2, it's by default is left aligned, and not beautiful enough. I tried several ways to make it Centre aligned, but faile…
-
Nick, before I act like a bull in a china shop, do you have a SV version for OSX in the works? Thanks!
-
I know this is a mobile lib, but it works good on chrome (but not at alll in firefox 8?)
When adding the jquery mobile lib after or before including SwipeView then the SwipeView does not properly ani…
-
I am wondering how we can make a bold text for the selected item in swipe view.
-
Hi,
I have button for remote scrolling of SwipeView. After click a button, view should center at the given index, but it doesn't. Swipes and whole swipeView is working normally. The swipeView stays i…
-
My SwipeView is getting it's data off of an NSFetchedResultsController (FRC). When my view appears on screen, I call reload data on the SwipeView in -viewWillAppear: so that it can update based on the…
-
In web apps you can get a better performance by minimizing the number of (HTTP) requests on a page by combining resources (e.g. JS files, just like the aggregate function in Designer).
Almost every …
-
I have an Array of UIViewControllers, I would like each page in the swipeView to be the right viewController's view
In the swipeView:viewForItemAtIndex:reusingView method, I have the following imple…