All Projects → Bruce-7 → Hdalertview

Bruce-7 / Hdalertview

Licence: mit
A similar system UIAlertView

Projects that are alternatives of or similar to Hdalertview

AlertKit
🚨 SwiftUI alerts (and action sheets) done right
Stars: ✭ 60 (-1.64%)
Mutual labels:  alertview, actionsheet
LGApplications
个人小demo集合:①ActionSheet; ②PickerView; ③ScrollView嵌套; ④渐变文字Label; ⑤tableView实现单选;
Stars: ✭ 36 (-40.98%)
Mutual labels:  alertview, actionsheet
Lgalertview
Customizable implementation of UIAlertViewController, UIAlertView and UIActionSheet. All in one. You can customize every detail. Make AlertView of your dream! :)
Stars: ✭ 1,027 (+1583.61%)
Mutual labels:  actionsheet, alertview
Fwpopupview
弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。
Stars: ✭ 361 (+491.8%)
Mutual labels:  alertview
Spalertcontroller
提醒对话框,风格和微信原生几乎零误差。简书地址:
Stars: ✭ 395 (+547.54%)
Mutual labels:  alertview
Alertonboarding
A simple and attractive AlertView to onboard your users in your amazing world.
Stars: ✭ 766 (+1155.74%)
Mutual labels:  alertview
Cdalertview
Highly customizable alertview and alert/notification/success/error/alarm popup written in Swift
Stars: ✭ 1,056 (+1631.15%)
Mutual labels:  alertview
Malert
Custom alert View to iOS applications
Stars: ✭ 328 (+437.7%)
Mutual labels:  alertview
Tbactionsheet
A Custom&Powerful Action Sheet For iOS. 一个 ActionSheet 满足所有样式!超高自由度的可定制!
Stars: ✭ 942 (+1444.26%)
Mutual labels:  actionsheet
Swiftentrykit
SwiftEntryKit is a presentation library for iOS. It can be used to easily display overlays within your iOS apps.
Stars: ✭ 5,706 (+9254.1%)
Mutual labels:  actionsheet
Alerttransition
AlertTransition is a extensible library for making view controller transitions, especially for alert transitions.
Stars: ✭ 565 (+826.23%)
Mutual labels:  alertview
Uiwidget
一个集成TabLayout、UIAlertDialog、UIActionSheetDialog、UIProgressDialog、TitleBarView(自带沉浸式标题栏)、CollapsingTitleBarLayout、RadiusView(圆角及状态背景设置View解放shape文件)、KeyboardHelper(软键盘控制及遮挡控制类)、StatusViewHelper(状态栏沉浸帮助类)、NavigationViewHelper(导航栏沉浸式帮助类)、AlphaViewHelper(View透明度控制帮助类) 等项目常用UI库
Stars: ✭ 400 (+555.74%)
Mutual labels:  actionsheet
Lcactionsheet
一款简约而不失强大的 ActionSheet,微博、微信和 QQ 都采用了极其类似的样式,完全支持 Swift。
Stars: ✭ 809 (+1226.23%)
Mutual labels:  actionsheet
Popupdialog
A simple, customizable popup dialog for iOS written in Swift. Replaces UIAlertController alert style.
Stars: ✭ 3,709 (+5980.33%)
Mutual labels:  alertview
Lihalert
Advance animated alerts for iOS written in Swift
Stars: ✭ 34 (-44.26%)
Mutual labels:  alertview
Sclalertview
Beautiful animated Alert View. Written in Objective-C
Stars: ✭ 3,426 (+5516.39%)
Mutual labels:  alertview
Rnkit Alert View
React Native Alert View component for iOS + Android
Stars: ✭ 24 (-60.66%)
Mutual labels:  alertview
Cfnotify
A customizable framework to create draggable views
Stars: ✭ 490 (+703.28%)
Mutual labels:  alertview
Fftoast
A very powerful iOS message notifications and AlertView extensions. It can be easily realized from the top of the screen, the bottom of the screen and the middle of the screen pops up a notification. You can easily customize the pop-up View.
Stars: ✭ 649 (+963.93%)
Mutual labels:  alertview
Leealert
优雅的可自定义 Alert ActionSheet
Stars: ✭ 1,097 (+1698.36%)
Mutual labels:  actionsheet

HDAlertView

HDAlertView是一个类似系统, 微信, QQ, 等等App的alertView弹窗.

Demo【演示】

演示

Examples【示例】

 HDAlertView *alertView = [HDAlertView alertViewWithTitle:@"HDAlertView" andMessage:@"similar system UIAlertView"];

 [alertView addButtonWithTitle:@"ok" type:HDAlertViewButtonTypeDefault handler:^(HDAlertView *alertView) {
     NSLog(@"ok");
 }];

 [alertView addButtonWithTitle:@"cancel" type:HDAlertViewButtonTypeDefault handler:^(HDAlertView *alertView) {
     NSLog(@"cancel");
 }];

 [alertView show];

CocoaPods

推荐使用CocoaPods安装

platform :ios, '7.0'

target :'your project' do

pod 'HDAlertView'

end

Pod install

Manually【手动导入】

  1. 通过 Clone or download 下载 HDAlertView 文件夹内的所有内容.
  2. 将 HDAlertView 内的源文件添加(拖放)到你的工程.
  3. 导入#import "HDAlertView.h".

补充

系统自带UIAlertView有常见BUG, 比如和系统键盘动画冲突等等, 需要代理操作等诸多不方便使用. 使用UIAlertController就不会有UIAlertView等等问题, 但是又不支持iOS7.所以才自定义一个类似系统的UIAlertView, 用法和UIAlertController相似, 而且简单.

如果在使用过程中遇到BUG, 希望你能Issues我. 如果对你有所帮助请Star
Sina : @小七柒_7

License

HDAlertView is released under the MIT license. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].