Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1004 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 1004 Bytes

PPAlertView

  • an alert view
  • not profound code , just save your time
PPAlertView *alertView = [PPAlertView new];
//alertView.hiddenCloseButton = YES;
//alertView.colorTheme = PPAlertViewColorBlue;
[alertView show:@"温馨提示" msg:@"版本更新成功" buttons:@[@"取 消",@"确 定"]];
[alertView callback:^(UIButton * _Nonnull button) {
    NSLog(@"tag %ld",(long)button.tag);
} close:^{
    NSLog(@"close");
}];

PPActivityView *activityView = [[PPActivityView alloc]initWithFrame:self.view.bounds];
[self.view addSubview:activityView];
[activityView startAnimate];

[PPHUD showMessage:@"hello world"];