Ya know the little location button in the lower-left corner of the Maps application? Does anybody know where I can find that? I looked in UIButtonType and UITabBarSystemItem b
(Warning: undocumented feature, will be rejected by AppStore, blah blah blah)
The location button can be accessed with
UIBarButtonItem* item = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:100
target:... action:...];
If you just want the image, save the result returned by
UIImage* img = [UIImage kitImageNamed:@"UIButtonBarLocate.png"];