PYAlertView 0.0.1

PYAlertView 0.0.1

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布上次发布2015 年 5 月

Tsau,Po-Yuan 维护。



  • Tsau,Po-Yuan

所有动画均使用 POP 实现

用法

PYAlertView *alertView = [[PYAlertView alloc] initWithCustomView:_customAlertView andAnimationType:PYAlertViewAnimationSlideInOut];
[alertView setButtonTitles:[NSMutableArray arrayWithArray:@[@"Cancel"]]];
[alertView setButtonBackgroundColor:[UIColor lightGrayColor] andTextColor:[UIColor whiteColor] andFont:[UIFont fontWithName:@"Avenir-Light" size:15.0] andIndex:0];

// show in self.view
[alertView showWithButtonTouchUpInsideBlock:^(PYAlertView *alertView, NSUInteger buttonIndex) {
    if (buttonIndex == 0) {
        [alertView close];
    }
} withParentView:self.view];