美文网首页
#import vs @import

#import vs @import

作者: 烟影很美 | 来源:发表于2016-01-08 11:22 被阅读60次

    在xcode 5 下,为了更易于开发,增加了modules和 auto-linking 这两个新特性。用 @import 来增加框架 到项目中比用 #import会更有效. 我们来看看为什么:
    "Modules for system frameworks speed build time and provide an alternate means to import APIs from the SDK instead of using the C preprocessor. Modules provide many of the build-time improvements of precompiled headers with less maintenance or need for optimization. They are designed for easy adoption with little or no source changes. Beyond build-time improvements, modules provide a cleaner API model that enables many great features in the tools, such as Auto Linking."
    Modules and auto-linking

    E31097C1-1DDB-41C7-83FC-30FFB32A3ACF.png

    默认情况下是enabled的。 如果是旧的项目,你可以通过设置"Language - Modules." 来设置Enable Modules 和Link Frameworks Automatically 为Yes。
    另外一个使用moudules的好处是你再也不用去链接你的framework到你的项目了。例如,在以前,如果你要使用MapKit这个框架,你要这样做1) 使用语句 #import <MapKit/MapKit.h> 导入框架2) 去到项目的build phases 设置项,找到MapKit.framework.并加入到Link Binary With Libraries里面。如果使用modules的话,只需要加入语句 "@import MapKit;" 你就可以开始使用了,根本不需要链接到你的项目。

    当然, @import只能引入以框架形式出现的文件, 所以, 比如你要引入一个自定义cell的头文件是不能用这个的

    相关文章

      网友评论

          本文标题:#import vs @import

          本文链接:https://www.haomeiwen.com/subject/uuwfkttx.html