I'm trying to create a UIScrollView with custom paging, however, I'm having an issue with
how the paging decelerates.
Whenever the UIScrollView deceleration routine kicks in, the paging doesn't "decelerate to" my custom paging offset.
Instead, it stops anywhere it wants. Then, I have to tell it where I want the offset to go.
I find this stop-and-go behavior annoying.
Can anyone tell me if this new delegate solves this problem?
The only reason you need to be paid developer is to test on devices and release your app to the app store. Everything else, you can either buy for a minimal amount (ex. Xcode 4 $5) or get for free.
Everyone (developers) has equal access to the SDK.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.
The only reason you need to be paid developer is to test on devices and release your app to the app store. Everything else, you can either buy for a minimal amount (ex. Xcode 4 $5) or get for free.
Everyone (developers) has equal access to the SDK.
Download iOS 5 SDK
iOS 5 and iOS 5 SDK are available to iOS Developer Program members.
Quote:
You do not have access to this resource based on your membership.
Access to technical resources such as pre-release software and associated documentation, and information related to distributing iOS or Mac apps on the App Store are benefits offered to Apple Developer Program members.
I can't download it without being a paid developer. I can only download XCode 4.1.
I just want to know if this new UIScrollView delegate will solve my problem??
I have no idea if it'll solve your problem or not but you CAN download the SDK without paying. Go here, log in (or create an account if you don't have one), and go to downloads. The only difference is that paid developer accounts have access to Xcode for Snow Leopard.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.
I have no idea if it'll solve your problem or not but you CAN download the SDK without paying. Go here, log in (or create an account if you don't have one), and go to downloads. The only difference is that paid developer accounts have access to Xcode for Snow Leopard.
Ah, thanks, my fault. I didn't know iOS 5.0 was part of XCode 4.2.
I guess I was trying to download XCode5 or something.
I finally got it working, with the new delegate method!
I was trying to set targetContentOffset with scrollView.contentOffset, which was wrong.
targetContentOffset already contains a valid offset, that was presumably calculated using
the passed velocity. I just needed to adjust targetContentOffset, and it magically decelerates
to the correct offset. No more abrupt stops. Awesome.