Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the question I need to create a panel that apear on the app by clicking on the naviagationItemRightBarButton. this panel contains labels btn etc... I tried to do it using a UIPopover but I think that only works for ipad app.

public UIPopoverController CustomPopover;
 FilterSortController newpanel = new FilterSortController();
 //FilterSortController is UIViewController
CustomPopover = new UIPopoverController(newpanel);
CustomPopover.PresentFromBarButtonItem (this.NavigationItem.RightBarButtonItem , UIPopoverArrowDirection.Any, true);

and after that I overried the ViewDidLoad of the FilterSortController

ContentSizeForViewInPopover = new System.Drawing.SizeF(320,110);

There is no way to create a Popover for iphone using monotouch. thanks for the help

share|improve this question

1 Answer

up vote 4 down vote accepted

UIPopoverController is not supported on iPhone. You would have to write your own custom controller and view to get this functionality. There is a open source implementation in ObjC here which you could btouch or port.

share|improve this answer
Thanks for this implemen. it is not well maked I am looking for something for monotouch to custom is like I want Can you just give me the main idea how to do it – Khaldoun Mar 25 '11 at 20:28
I would upvote twice just for the effort vs expectation of getting any points for the answer. :) – Eduardo Scoz Mar 25 '11 at 20:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.