import UIKitclass ViewController: UIViewController { @IBOutlet var button : UIButton? //var alertView:UIAlertView? override func viewDidL...
分类:
编程语言 时间:
2015-06-24 07:04:27
阅读次数:
184
一个ViewController里使用了多个带block的UIAlertView时,不容易判断当前AlertView的打开状态。下面的代码可以解决这个问题:#pragma mark 查找当前界面有没有一个AlertView
+(BOOL)isAlert{
for (UIWindow* window in [UIApplication sharedApplication].windows) {...
分类:
移动开发 时间:
2015-06-18 19:45:09
阅读次数:
244
- (id)initWithTitle:(NSString *)title
message:(NSString *)message
completionBlock:(void (^)(NSUInteger buttonIndex, EMAlertView *alertView))block
cancelButtonTitle:(NSString *)can...
分类:
移动开发 时间:
2015-06-18 11:40:52
阅读次数:
245
objective-c有两个扩展机制:category和associative。我们可以通过category对已经存在的类添加和扩展方法,但是它有一个很大的局限性,那就是不能扩展属性。于是,就有了专门用来扩展属性的机制:associative。关联对象是Runtimezhong关联对象是Runtime中一个非常实用的特性
associative的主要原理,就是把两个对象相互关联起...
分类:
其他好文 时间:
2015-06-16 16:49:50
阅读次数:
121
UIAlertView1.Title获取或设置UIAlertView上的标题。2.Message获取或设置UIAlertView上的消息 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"me...
分类:
其他好文 时间:
2015-06-12 17:05:23
阅读次数:
115
代理:MyAlertView.h:@property (nonatomic,assign)id delegate;@protocol MyAlertViewDelegate - (void)myAlertView:(MyAlertView *)alertView clickedButton...
分类:
其他好文 时间:
2015-06-07 12:19:00
阅读次数:
256
1 有时候我们需要alertView 弹出后自动消失,比如自动登录,如果是使用系统自带的UIAlertView的话,这样可以很方便实现,实现方法如下: 首先在初始化alertView的地方使用计时器,如 [NSTimer?scheduledTimerWit...
分类:
其他好文 时间:
2015-04-16 20:12:21
阅读次数:
192
UIAlertView * alertView=[[UIAlertView
alloc]initWithTitle:nil
message:@"真的要退出?"
delegate:self
...
分类:
移动开发 时间:
2015-04-09 10:35:20
阅读次数:
235
-(IBAction)backAction:(UIBarButtonItem*)sender{UIAlertView*alertview=[[UIAlertViewalloc]initWithTitle:@"提示"message:@"你确定放弃添加吗"delegate:selfcancelButtonTitle:@"取消"otherButtonTitles:@"确定",nil];[alertviewshow];}#pragmamarkalertview//UIAlertView协..
分类:
其他好文 时间:
2015-04-06 19:00:11
阅读次数:
196
一、本地推送iOS 推送通知分为本地推送和远程推送通知,远程推送通知就类似于我们平时使用微信时,即使锁屏了,也能收到好友发送给我们的消息,然后在主屏幕显示一个alertview,远程推送需要远程服务端的支持,比较复杂. 本地推送相对比较简单,不需要服务端的支持。本地通知是NSLocalNotification 实现的,通过实例化一个NSLocalNotification类型的通知,同时设置通知的fi...
分类:
移动开发 时间:
2015-03-31 18:18:14
阅读次数:
242