Search Results

0
votes

Reloading a view when back button is clicked from uinavigationbar

Take the code that sets the button up in the viewDidLoad method and move it into viewWillAppear. It should update the button properly when you re-enter the view. …
2
votes

iPhone restrict user from entering space in textfield

This will search to see if your replacement string contains a space, if it does then it throws the error message up, if it doesn't it returns YES. - (BOOL)textField:(UITextField *)t …
0
votes

How to customize the content of each page using Page Control and UIScrollView?

I downloaded the sample, added the following lines to the MyViewController.h IBOutlet UILabel *pageText; @property (nonatomic, retain) UILabel *pageText; In the M …