Search Results

4
votes

How to detect when a UIScrollView has finished scrolling

I think scrollViewDidEndDecelerating is the one you want. Its UIScrollViewDelegates optional method: - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView …
0
votes

How to create a UITableViewCell with a transparent background

I had a problem where my custom tableviewcell backgroundimage was overlaid with a white label background, i tried everything and finally setting background to clear color in the viewWillAppear did …