run-time vs. compile-time iPhone version check

后端 未结 3 372
孤街浪徒
孤街浪徒 2020-12-16 20:45

What\'s the difference between run-time, e.g., [[UIDevice currentDevice] systemVersion], and compile-time, e.g., __IPHONE_OS_VERSION_MIN_REQUIRED c

3条回答
  •  我在风中等你
    2020-12-16 21:12

    The Compile and Run time or programing words which will be used by the developer. So the best example of compile time is the writing time of the code like importing syntax and declaring properities and methods.and ARC is the compile time programing. And coming to RUNTime after writing the code by the developer is going to execute the program is called runtime. In this time the code will be compiled and will face run time errors like crashing programs and fourse closes unexpected behaviour of the program like that.

    Please find the below url For more details

    http://pc.net/helpcenter/answers/compile_time_vs_runtime

提交回复
热议问题