GSAlert 中文说明
If you want to use UIAlertController, but still need to support iOS 7 this project is for you.
- On iOS 7 GSAlert uses UIAlertView or UIActionSheet and on iOS 8 it uses UIAlertController.
- Support iPad.
Show alert in controller or view:
//
// - parameter type : .Alert or .ActionSheet
// - parameter sourceView : iPad popover from
//
self.showAlert(.Alert, title: "This is Alert!", message: "some message...", sourceView: sender, actions: [
AlertAction(title: "Cancel", type: .Cancel, handler: nil),
AlertAction(title: "Sure", type: .Default) {
print("I'm Alert.")
}
])
Drag GSAlert
folder to your project.
- iOS 7.0+
GSAlert is available under the MIT license. See the LICENSE file for more info.