LCAlertController 0.1.2

LCAlertController 0.1.2

Maintained by jgyhc.



  • By
  • jgyhc

LCAlertController

CI Status Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

LCAlertController is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'LCAlertController'

Author

jgyhc, [email protected]

License

LCAlertController is available under the MIT license. See the LICENSE file for more info.

使用

    LCActionSheetViewController *viewController = [[LCActionSheetViewController alloc] initWithTitles:@[@"确定", @"asdalsk", @"阿达的快乐", @"按时打卡了敬爱空间的"] handler:^(LCActionSheet * _Nonnull actionSheet, NSString * _Nonnull title, NSInteger idex) {
        NSLog(@"点击了%@", title);
    }];
    [self presentViewController:viewController animated:YES completion:nil];