Customized alertView / loadingView for replacing UIAlertView. Support display queue, you will never miss any alert/loading view. This component is part of the most popular social network in China, DouDouYou兜兜友 (https://ddy.me), which is available download at https://itunes.apple.com/us/app/dou-dou-you/id379405145?mt=8.
- import XYAlertViewHeader.h in your prefix file.
- invoke XYShowAlert(@"Hello!") anywhere in your code to popup the alert view.
- completely way to create a customized alert view with block.
// create an alertView
XYAlertView *alertView = [XYAlertView alertViewWithTitle:@"Hello!"
message:@"This's the single alert view demo!"
buttons:[NSArray arrayWithObjects:@"Ok", @"Cancel", nil]
afterDismiss:^(int buttonIndex) {
NSLog(@"button index: %d pressed!", buttonIndex);
}];
// set the second button as gray style
[alertView setButtonStyle:XYButtonStyleGray atIndex:1];
// display
[alertView show];
- show a loading view and dismiss after 5 seconds
// create a loading view and show up
XYLoadingView *loadingView = [XYLoadingView loadingViewWithMessage:@"Loading will complete in 5 seconds..."];
[loadingView show];
// different way to show a loading view
// XYLoadingView *loadingView = XYShowLoading(@"Loading will complete in 5 seconds...");
// dismiss loading view with popup message after 5 seconds
[loadingView performSelector:@selector(dismissWithMessage:) withObject:@"The message comes out once loading view gone." afterDelay:5];
- also you can popup more than one alert view in single call, them will come out one by one without any missing
XYShowAlert(@"Hello! This is the first alertView");
XYShowAlert(@"I'm second one.");
XYShowAlert(@"This's the simply way to show an alert!");
iOS emoji keyboard view TSEmojiView.
- email: [email protected]
- msn: [email protected]