IOS-懶載入

來源:互聯網
上載者:User

標籤:

懶載入

懶載入——也稱為消極式載入,即在需要的時候才載入(效率低,佔用記憶體小)。所謂懶載入,寫的是其get方法.

注意:如果是懶載入的話則一定要注意先判斷是否已經有了,如果沒有那麼再去進行執行個體化

為什麼要使用懶載入:(1)不必將建立對象的代碼全部寫在viewDidLoad方法中,代碼的可讀性更強

(2)每個控制項的getter方法中分別負責各自的執行個體化處理,代碼彼此之間的獨立性強,松耦合

寫法:在.h檔案聲明@property (nonatomic,retain) CLLocationManager  (因為用的是 CLLocationManager 這個類,所以在.h檔案還應該匯入它的架構 #import <CoreLocation/CoreLocation.h>)

@property (nonatomic,retain) CLLocationManager *myManager;yManager;

在.m檔案裡面

懶載入,get方法,需要時再調用

-(CLLocationManager *)myManager{

    if (!_myManager) {

        _myManager =[[CLLocationManager alloc]init];

        多少米更新一次

        _myManager.distanceFilter =10;

        精準度

        _myManager.desiredAccuracy =kCLLocationAccuracyBest;

        _myManager.delegate =self;

    }

    return _myManager;

}

 

IOS-懶載入

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.