一行代碼實現(xiàn)系統(tǒng)彈框。Demo傳送門
//中部彈框
[[JQAlertView alloc] initWithTitle:@"提示" message:nil othersTitle:@[@"確定",@"取消"] style:(JQAlertViewStyleAlert) clickBlock:^(NSInteger index) {
NSLog(@"test---%zd",index);
}];
//底部彈框
[[JQAlertView alloc] initWithTitle:nil message:nil othersTitle:@[@"確定",@"取消"] style:(JQAlertViewStyleSheet) clickBlock:^(NSInteger index) {
NSLog(@"test---%zd",index);
}];
封裝系統(tǒng)彈框.gif