Constants in Objective-C

后端 未结 14 1288
广开言路
广开言路 2020-11-21 22:10

I\'m developing a Cocoa application, and I\'m using constant NSStrings as ways to store key names for my preferences.

I understand this is a good idea b

14条回答
  •  南方客
    南方客 (楼主)
    2020-11-21 22:46

    Try using a class method:

    +(NSString*)theMainTitle
    {
        return @"Hello World";
    }
    

    I use it sometimes.

提交回复
热议问题