Swift 編寫的漂亮的警告視圖:SCLAlertView-Swift
SCLAlertView-Swift 是用 Swift 編寫的漂亮動畫警告視圖。易于使用:
// Get started let alertview : SCLAlertViewResponder = SCLAlertView().showSuccess(self, title: "Hello World", subTitle: "This is a more descriptive text.") // Upon displaying, change/close view alertview.setTitle("New Title") // Rename title alertview.setSubTitle("New description") // Rename subtitle alertview.close() // Close view // Alternative alert types SCLAlertView().showError(self, title: "Hello Error", subTitle: "This is a more descriptive error text.") // Error SCLAlertView().showNotice(self, title: "Hello Notice", subTitle: "This is a more descriptive notice text.") // Notice SCLAlertView().showWarning(self, title: "Hello Warning", subTitle: "This is a more descriptive warning text.") // Warning SCLAlertView().showInfo(self, title: "Hello Info", subTitle: "This is a more descriptive info text.") // Info // Advanced SCLAlertView().showTitle( view: self, // Parent view controller title: "Congratulations", // Title of view subTitle: "Operation successfully completed.", // String of view duration: kDefaultAnimationDuration, // Duration to show before closing automatically, default: 2.0 completeText: "Done", // Optional button value, default: "" style: .Success // Styles - see below. )
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!