一行代码实现系统弹框。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);
}];