IOS學習之ios全域變數定義和使用__IOS

來源:互聯網
上載者:User
在iPhone開發中,全域變數的幾種使用方法

方法1:使用靜態變數 (不推薦)

方法2: 使用singleton pattern (ref link: http://nice.iteye.com/blog/855839) 

方法3:把全域變數設定到AppDelegate中 )

在iPhone開發中,使用全域變數有這麼幾種實現方法:
1、 在AppDelegate中聲明並初始化全域變數
      然後在需要使用該變數的地方插入如下的代碼:
      //取得AppDelegate,在iOS中,AppDelegat被設計成了單例模式
      AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
      appDelegate.Your Variable

2、使用 extern 關鍵字

2.1 建立Constants.h檔案(檔案名稱根據需要自己取),用於存放全域變數;

2.2 在Constants.h中寫入你需要的全域變數名,

例如: NSString *url;//指標類型

int count;//非指標類型

注意:在定義全域變數的時候不能初始化,否則會報錯。

2.3 在需要用到全域變數的檔案中引入此檔案:

#import "Constants.h"

2.4 給全域變數初始化或者賦值:

extern NSString *url;

  url = [[NSString alloc] initWithFormat:@"http://www.google.com"];

//指標類型;需要alloc(我試過直接 url = @"www.google.com"  好像也能訪問 )

extern int count;

count = 0;//非指標類型

2.5 使用全域變數:和使用普通變數一樣使用。


方法二:ios 單例全域變數寫法

interface MySingleton : NSObject
{
⇒①    NSString *testGlobal;
}

+ (MySingleton *)sharedSingleton;
⇒②@property (nonxxxx,retain) NSString *testGlobal;

@end

@implementation MySingleton
⇒③@synthesize testGlobal;

+ (MySingleton *)sharedSingleton
{
  static MySingleton *sharedSingleton;

  @synchronized(self)
  {
    if (!sharedSingleton)
      sharedSingleton = [[MySingleton alloc] init];

    return sharedSingleton;
  }
}

@end

把①、②、③的地方換成你想要的東西,
使用例:

[MySingleton sharedSingleton].testGlobal = @"test";

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.