Objective-C: How Can I Access String Variable As a Global?

后端 未结 4 1394
你的背包
你的背包 2020-12-20 04:31

I am new to iPhone development. I want to access a string variable in all the class methods, and I want to access that string globally. How can I do this?

Please hel

4条回答
  •  眼角桃花
    2020-12-20 05:07

    Leaving aside the issue of global variables and if they are good coding practice...

    Create your string outside of any Objective-C class in a .m file in your project:

    NSString *myGlobalString = @"foo";
    

    Then put the declaration in a header file that is included by every other file that wants to access your string:

    extern NSString *myGlobalString;
    

    OK, well I can't leave it entirely aside. Have you considered putting your "global" string somewhere else, perhaps inside your application delegate as a (possibly read-only) property?

提交回复
热议问题