自定義彈窗,雖然同樣的Dome很多零聚,但我還是厚顏無恥的再共享一個自己寫的吧榨了!這個彈窗我定義了兩種實現(xiàn)模式煎谍,一種是 alloc 創(chuàng)建對象,另一種就是 單利防止重復(fù)彈出龙屉,其實dome 不是重要的呐粘,重要的是思路,希望對路過的你有幫助转捕。
- 方法一:
GSLAlertView * alertGs = [[GSLAlertView alloc] initWithTitle:@"提示" message:@"獲取天氣失斪麽!\n解決辦法:\n1.手動選擇地區(qū) \n2.敬請等待其服務(wù)地區(qū)信息更新" sureBtn:@"知道了" cancleBtn:nil];
alertGs.resultIndex = ^(NSInteger index) {
};
[alertGs showGSAlertView];
- 方法二
[[GSLAlertView alertManager] createInitWithTitle:@"相機授權(quán),才可開啟美顏相機喲五芝!" message:@"跳轉(zhuǎn)相機授權(quán)設(shè)置" sureBtn:@"設(shè)置" cancleBtn:@"取消"];
[GSLAlertView alertManager].resultIndex = ^(NSInteger index) {
if (index == 2) {
}else{
}
};
[[GSLAlertView alertManager] showGSAlertView];