Constants in Objective-C

后端 未结 14 1545
广开言路
广开言路 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 23:05

    // Prefs.h
    extern NSString * const RAHUL;
    
    // Prefs.m
    NSString * const RAHUL = @"rahul";
    

提交回复
热议问题