美文网首页
第二条在类的头文件中尽量少引用其他头文件

第二条在类的头文件中尽量少引用其他头文件

作者: coder也爱诗 | 来源:发表于2019-04-14 10:05 被阅读0次

    原因:引用较多头文件会影响编译速度

    可以使用@class来申明类

    #import <UIKit/UIKit.h>

    @class Person;

    externNSString*constViewControllerString;

    @interfaceViewController :UIViewController

    @property(nonatomic,strong)Person * person;

    @end

    在.m中需要使用该类时候去引入头文件

    #import "ViewController.h"

    #import "Person.h"

    @interface ViewController ()

    @end

    @implementationViewController

    - (void)viewDidLoad {

        [super viewDidLoad];

        Person* person = [[Person alloc]init];

    }

    相关文章

      网友评论

          本文标题:第二条在类的头文件中尽量少引用其他头文件

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