我想编写一个可以在指定时间弹出全屏窗口(例如播放视频)的ios应用程序,似乎UILocalNotification无法帮助。谁有任何想法?
答案 0 :(得分:0)
您可以同时展示modalView
,同时删除UIStatusBar
答案 1 :(得分:0)
在视图控制器中,您可以调用
- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated
将以模态方式在当前视图之上显示指定的视图控制器。
要在计时器间隔(我认为你暗示你想要做什么?)这样做,你会做以下事情:
-(IBAction)showModalWithDelay {
[NSTimer scheduledTimerWithTimeInterval:.06 target:self selector:@selector(showModal) userInfo:nil repeats:NO];
}
-(void)showModal {
[self presentModalViewController:modalViewController animated:YES];
}