UIBarButtonItem does not extend UIView, so there is nothing like a frame property.
But is there any way I can get what is it's CGRect frame, relative to the application UIWindow?
|
But is there any way I can get what is it's |
|||
|
|
|
Do you like to use private APIs? If yes,
Of course no one wants this when targeting the AppStore. A more unreliable method, and also uses undocumented features, but will pass Apple's test, is to loop through the subviews to look for the corresponding button item.
The As you can see, there are a lot of uncertainty when dealing with undocumented features. However, you just want to pop up something under the finger right? The UIBarButtonItem's
note the event argument — you can obtain the position of touch with
or the button view with
Therefore, there's no need to iterate the subviews or use undocumented features for what you want to do. |
|||||||||||||||||
|
|
In iOS 3.2, there's a much easier way to show an Action Sheet popover from a toolbar button. Merely do something like this:
|
|||
|
|
|
|||
|
|
|
I found out a way to do it pretty easily! It's a bit hacky but just involves temporarily replacing the UIBarButtonItem's customView and figuring out it's index in the parent view's hierarchy. I needed it for my popover project (https://github.com/werner77/WEPopover):
|
|||||||
|
|
You can get it from the UINavigationBar view. The navigationBar is a UIView which has 2 or 3 custom subviews for the parts on the bar. If you know that the UIBarButtonItem is currently shown in the navbar on the right, you can get its frame from navbar's subviews array. First you need the navigationBar which you can get from the navigationController which you can get from the UIViewController. Then find the right most subview:
I haven't compiled this code so YMMV. |
|||
|
|
|
Before implement this code, be sure to call
|
||||
|
|