if([messageNotification isPopoverVisible])
[messageNotification dismissPopoverAnimated:YES];
我的项目中有以上两行代码message_Notification
是UIPopovercontroller
的对象。
当我的Popover实际呈现在主viewController上时,问题是isPopoverVisible
返回false
。对此有任何想法??
答案 0 :(得分:0)
检查message_Notification是否可用,然后检查visiblity 我认为存在一些不一致,因为messageNotification和message_Notification应该与我在代码中所做的相同
if(messageNotification)
{
if([messageNotification isPopoverVisible])
{
[messageNotification dismissPopoverAnimated:YES];
}
}
else
{
NSLog(@"Not availble");
}