我试图UIPopoverController
通过覆盖这两种方法从 with 中删除边框。但它似乎对边界没有任何作用。
有什么建议么?
+ (BOOL)wantsDefaultContentAppearance
{
NSLog(@"wantsDefaultContentAppearance");
return NO;
}
+ (UIEdgeInsets)contentViewInsets {
NSLog(@"contentViewInsets");
return UIEdgeInsetsMake(0, 0, 0, 0);
}