常用宏(彈框,從數組生成彈框,打電話,清空數組,創(chuàng)建數組,單利,打印log)--讓你的工作事半功倍

// 1 如果兩個按鈕都為空,則默認一個確定按鈕

#define HTALERTWITHBUTTONS(title,commitButtontitle,commitBlock,cancelButtonTitle) {UIAlertController *alert = [ UIAlertController alertControllerWithTitle:@"溫馨提示" message:title preferredStyle:UIAlertControllerStyleAlert];\

if(commitButtontitle != nil && commitBlock != nil){\

UIAlertAction *action1 = [ UIAlertAction actionWithTitle:commitButtontitle style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {\

commitBlock();\

}];\

[alert addAction:action1];\

}\

if(cancelButtonTitle == nil && commitButtontitle == nil){\

UIAlertAction *action = [ UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {}];\

[alert addAction:action];\

}else if(cancelButtonTitle != nil){\

UIAlertAction *action = [ UIAlertAction actionWithTitle:cancelButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {}];\

[alert addAction:action];\

}\

[self presentViewController:alert animated:YES completion:nil];\

}


//2. 傳入數組,生成彈窗/點擊事件 ? ?需要導入UIAlertController的擴展(自己寫的)?

//調用形如:(

// ? ? NSArray *arry = @[@{@"刪除":^{NSLog(@"刪除...........");}},@{@"編輯":^{ ? ?NSLog(@"編輯...........");}},@{@"搜索":^{}},@{@"確定":^{}}];

// ? HTALERTSHEET(@"溫馨提示", @"", UIAlertControllerStyleActionSheet, arry, self);

// ?)

#define HTALERTSHEET(title,msg,type,arry,controll) {UIAlertController *alert = [ UIAlertController alertControllerWithTitle:title message:msg preferredStyle:type];\\\\

int cancelCount = 0;\\\\

for (NSDictionary *dict in arry) {\\\\

for (NSString *key in dict) {\\\\

UIAlertAction *cancle = [ UIAlertAction actionWithTitle:key style: [key isEqualToString:@"取消"]?UIAlertActionStyleCancel:UIAlertActionStyleDefault handler:[dict valueForKey:key]];\\\\

[alert addAction:cancle];\\\\

if ([key isEqualToString:@"取消"]) {\\\\

cancelCount = 1;\\\\

}\\\\

}\\\\

}\\\\

if (cancelCount == 0) {\\\\

UIAlertAction *cancle = [ UIAlertAction actionWithTitle:@"取消" style: UIAlertActionStyleCancel handler:nil];\\\\

[alert addAction:cancle];\\\\

}\\\\

[controll presentViewController:alert animated:YES completion:nil];\\\\

}

// 3. 撥打電話

#define HTMakeACallWithPhoneNum(phoneNum,view) {UIWebView *webView =[[ UIWebView alloc]init];\\\\

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString: [NSString stringWithFormat:@"tel:%@",[phoneNum isEqualToString:@""]?@ "888888":phoneNum]]]];\\\\

[view addSubview:webView];\\\\

}

//4. 如果數組為空則創(chuàng)建對象,否則清空數組

#define HTCLEARARRY(arry) ?if(arry== nil){\\\\

arry = [[ NSMutableArray alloc]init];\\\\

}else{\\\\

[arry removeAllObjects];\\\\

}


//5. 打印

#ifdef DEBUG

#define HtLog(...) NSLog(__VA__ARGS__);

#else

#define HtLog(...)

#endif

//6. 單例

#define singleton_interface(className) \\\\

+ (className *)shared##className;

#define singleton_implementation(className) \\\\

static className *_instance; \\\\

+ (id)allocWithZone:(NSZone *)zone \\\\

{ \\\\

static dispatch_once_t onceToken; \\\\

dispatch_once(&onceToken, ^{ \\\\

_instance = [super allocWithZone:zone]; \\\\

}); \\\\

return _instance; \\\\

} \\\\

+ (className *)shared##className \\\\

{ \\\\

static dispatch_once_t onceToken; \\\\

dispatch_once(&onceToken, ^{ \\\\

_instance = [[self alloc] init]; \\\\

}); \\\\

return _instance; \\\\

}


//網絡設置

//為了方便調整網絡環(huán)境通過條件編譯調整

// ? 1代表內網環(huán)境0代表外網

// ? baseUrl為訪問的服務器路徑

// ? requestPort為普通請求的端口號

// ? uploadPort代表上傳文件的端口號

#define LocalTest 0

#if LocalTest

//內網

#define BaseUrl @"http://192.168.31.68:8900/api" ? //內網

#define RequestPort @"8900"

#define UploadPort @"9000"

#else

//外網

#define BaseUrl @"http://133.224.17.12:9800/api"

#define RequestPort @"9800"

#define UploadPort @"9801"

#endif

能夠訪問百度證明連接者外網 ?,檢測網絡是內網還是外網

BOOL? isOutHost =? [[UIApplicationsharedApplication]canOpenURL:[NSURLURLWithString:@"http://www.baidu.com"]];

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末救巷,一起剝皮案震驚了整個濱河市腻窒,隨后出現的幾起案子堤尾,更是在濱河造成了極大的恐慌挚赊,老刑警劉巖拨齐,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件鬓椭,死亡現場離奇詭異惭墓,居然都是意外死亡坛梁,警方通過查閱死者的電腦和手機,發(fā)現死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門腊凶,熙熙樓的掌柜王于貴愁眉苦臉地迎上來划咐,“玉大人,你說我怎么就攤上這事钧萍『植” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵风瘦,是天一觀的道長队魏。 經常有香客問我,道長,這世上最難降的妖魔是什么胡桨? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任官帘,我火速辦了婚禮,結果婚禮上昧谊,老公的妹妹穿的比我還像新娘刽虹。我一直安慰自己,他們只是感情好呢诬,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布涌哲。 她就那樣靜靜地躺著,像睡著了一般尚镰。 火紅的嫁衣襯著肌膚如雪阀圾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天狗唉,我揣著相機與錄音初烘,去河邊找鬼。 笑死分俯,一個胖子當著我的面吹牛账月,可吹牛的內容都是我干的。 我是一名探鬼主播澳迫,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼剧劝!你這毒婦竟也來了橄登?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤讥此,失蹤者是張志新(化名)和其女友劉穎拢锹,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體萄喳,經...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡卒稳,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了他巨。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片充坑。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖染突,靈堂內的尸體忽然破棺而出捻爷,到底是詐尸還是另有隱情,我是刑警寧澤份企,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布也榄,位于F島的核電站,受9級特大地震影響司志,放射性物質發(fā)生泄漏甜紫。R本人自食惡果不足惜降宅,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望囚霸。 院中可真熱鬧腰根,春花似錦、人聲如沸邮辽。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽吨述。三九已至岩睁,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間揣云,已是汗流浹背捕儒。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留邓夕,地道東北人刘莹。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像焚刚,于是被迫代替她去往敵國和親点弯。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內容