How to customize / style a UIPopoverController

后端 未结 10 1865
闹比i
闹比i 2020-11-28 05:39

I\'m working on an iPad application and I\'m using UIPopoverControllers. I\'m at the part where the app needs to be branded and styled and i\'m wondering how to change the c

10条回答
  •  难免孤独
    2020-11-28 06:34

    Remove UIPopoverController border:

     NSArray* subviews = ((UIView*)[popupController.contentViewController.view.superview.superview.superview.subviews objectAtIndex:0]).subviews;
    for(UIView *subview in subviews){
        [subview removeFromSuperview];
    }
    

提交回复
热议问题