iPhone app launch time, lifecycle question

前端 未结 4 566
别跟我提以往
别跟我提以往 2021-01-16 10:35

I\'m trying come up with a method to determine how long after the user taps the app icon it takes for the app to be ready for user input.

As far as I know, the first

4条回答
  •  天命终不由人
    2021-01-16 11:26

    main() should be the first thing called, but there may be other things the system is doing first (loading libraries and resources, copy things around, etc). You're on the right track with a main-to-applicationDidFinishLaunch:'ing measurement.

提交回复
热议问题