在ios7之前的彈窗都是使用的傳統的uialertview,**如下:
//建立彈框uialertview *alertview = [[uialertview alloc]initwithtitle:@"提示" message:@"輸入的數字不合理" delegate:nil cancelbuttontitle:@"取消" otherbuttontitles:nil, nil];
//顯示彈框
[alertview show];
在ios8以來的彈框方式變為:
// 2.3.1建立乙個彈框uialertcontroller *alertvc = [uialertcontroller alertcontrollerwithtitle:@"提示" message:@"輸入的數字不合理" preferredstyle:uialertcontrollerstylealert];
// 2.3.2新增取消按鈕
[alertvc addaction:[uialertaction actionwithtitle:@"取消" style:uialertactionstylecancel handler:nil]];
// 2.3.3.顯示
[self presentviewcontroller:alertvc animated:no completion:nil];
iOS8之後CoreLocation定位的使用
在info.plist檔案中新增如下配置 始終允許訪問位置資訊 1 nslocationalwaysusagedescription 使用應用程式期間允許訪問位置資料 2 nslocationwheninuseusagedescription 建立乙個管理者 cllocationmanager ma...
iOS 8 之後的動態沙盒路徑
在ios8之前,我們獲取到沙盒中的document cache tmp之後,下一次模擬器或真機無論重啟多少次,這具體的路徑是固定的,可是ios8 之後,你要是在按原來的路徑去找你想要的東西,我想它會把你坑的很慘.下面我就來說說自己的此次爬坑總結 1 獲取沙盒路徑 nsarray path nssea...
iOS8之後毛玻璃效果的實現
在ios8.0之後,蘋果新增了乙個類uivisualeffectview,通過這個類來實現毛玻璃效果,使用也是非常簡單,幾行 搞定.uivisualeffectview是乙個抽象類,不能直接使用,需通過它下面的三個子類來實現 uiblureffect,uivisualeffevt,uivisuale...