Objective-C: how to group a series of string constants?

后端 未结 4 1770
栀梦
栀梦 2020-12-16 19:14

I defined a series of string constants like below, in macro way,

#define EXT_RESULT_APPID  @\"appid\"
#define EXT_RESULT_ERROR_CODE  @\"errorcode\"
#define         


        
4条回答
  •  误落风尘
    2020-12-16 19:33

    Create a header file say Constants.h

    Add all constants in this file. These can be constants that you would like to use in deferent classes of your project.

    #define EXT_RESULT_APPID  @"appid"
    #define EXT_RESULT_ERROR_CODE  @"errorcode"
    #define EXT_RESULT_PROGRESS  @"progress"
    

    Now, instead of importing this Constants.h in every class, goto -Prefix.pch file and import the File here.

    #import "SCConstants.h"
    

    now you can use the Constants in any class of the project to your ease.

提交回复
热议问题