Subclassing UIImagePickerController?
I'm a little lost on how to start. If anyone could share some thoughts (or even a tiny bit of code) I'd greatly appreciate it.
Thanks
-hack
Mac OS X (10.5.4)
Mac OS X (10.5.4)
for (UIView *view in self.view.subviews) {
NSLog(@"view is a %@", [view description]);
}
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
UINavigationBar *bar = navigationController.navigationBar;
UINavigationItem *top = bar.topItem;
top.prompt = @"Custom prompt on my picker";
top.title = @"Custom Picker Title";
}
Subclassing UIImagePickerController?