Why .pch file not available in swift?

前端 未结 1 1853
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-01 16:46

In swift, Prefix.pch file is not provided. In my project, I want to declare some macros globally and use through out application.

Can anyone give me suggestion how t

相关标签:
1条回答
  • 2020-12-01 17:02

    Even in Obj-C, using Macros for constants and expressions is something you shouldn't do. Taking examples from your comments:

    #define NAVIGATIONBAR_COLOR @"5B79B1"
    

    It would be better as a category method on UIColor, for example

    + (UIColor *) navigationBarColor {
        return [UIColor colorWith...];
    }
    

    The isPad macro should be either a plain function

    BOOL isIPad() {
        return ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad);
    }
    

    or again a category method, e.g. on UIDevice

    [UIDevice isIPad]
    

    defined as

    + (BOOL)isIPad {
       return ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad);
    }
    

    The precompiled headers were never meant to share macros to all of your code. They were made to include framework headers there to speed up the compilation process. With the introduction of modules last year and now with the possibility to create custom modules, you don't need precompiled headers any more.

    In Swift the situation is the same - there are no headers and no macros so there is also no precompiled header. Use extensions, global constants or singletons instead.

    0 讨论(0)
提交回复
热议问题