Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
171 views
in Technique[技术] by (71.8m points)

ios - Received Error in fetching the root view controller

I'm new to IOS Development. I tried to find out a root view controller using the below code :

print("UIApplication.shared.keyWindow?.rootViewController : " , UIApplication.shared.keyWindow?.rootViewController)

I applied this line in two views. one view it's working fine. But another View it's getting the error like below:

Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArray0 objectAtIndex:]: index 0 beyond bounds for empty NSArray

Does anyone know how to solve this error?. Thank you in Advance.

question from:https://stackoverflow.com/questions/65682072/received-error-in-fetching-the-root-view-controller

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

For swift 5 and above use following command

print("UIApplication.shared.windows.first!.rootViewController : " , UIApplication.shared.windows.first!.rootViewController)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...