加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Swift - whose view is not in the window hierarchy 问题解决方

发布时间:2020-12-14 07:17:01 所属栏目:百科 来源:网络整理
导读:问题现象: 想在页面初始化的时候,使用self.presentViewController方法弹出个告警提示框UIAlertController。但行后报了个如下告警,同时告警框也出不来。 1 2015 - 03 10 09 : 55 34.197 Test[ 1140 29622 ] Warning: Attempt to present UIAlertController
问题现象: 想在页面初始化的时候,使用self.presentViewController方法弹出个告警提示框UIAlertController。但行后报了个如下告警,同时告警框也出不来。
1
2015 - 03 10 09 : 55 34.197 Test[ 1140 29622 ] Warning: Attempt to present <UIAlertController: 0x7c95ca20 > on <Test.ViewController: 0x7a6afc60 > whose view is not in the window hierarchy!

解决办法: 原来的调用代码是写在viewDidLoad方法中,这个表示视图加载完毕。我们应该把方法调用放到viewDidApper中,这个是UIViewController对象的视图已经加入到窗口时调用。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import UIKit
class ViewController : UIViewController , UIActionSheetDelegate {
override func viewDidLoad() {
super .viewDidLoad()
}
viewDidAppear(animated: Bool ){
.viewDidAppear(animated)
var alertController = UIAlertController (title: "系统提示" message: "您确定要离开hangge.com吗?" UIAlertControllerStyle . Alert )
cancelAction = UIAlertAction "取消" UIAlertActionStyle Cancel nil )
okAction = "好的" Default )
alertController.addAction(cancelAction)
alertController.addAction(okAction)
self .presentViewController(alertController,animated: true )
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

原文出自: www.hangge.com 转载请保留原文链接: http://www.hangge.com/blog/cache/detail_652.html

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读