0
votes
UIPickerView - 1st row selection does not call didSelectRow
Instead of "pushing" the value of the picker each time you make a selection with this code:
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(N …
0
votes
delay loading of UIWebView in UITabBar app
Use viewDidAppear. This will be sent to the controller after the view fully appears and animations end.
…
2
votes
UISegmentControl problem
try something like this:
-(void)segmentSelect:(id)sender{
UISegmentedControl* segmentedControl = sender;
switch ([segmentedControl selectedSegmentIndex]) {
cas …
0
votes
UIActivityIndicator problem when downloading from URL
You need to put [indicator startAnimating] and [indicator stopAnimating]; in separate methods. I believe the animation does not kick in until the method reaches its end. So if you separate this i …
