UIApplication中些应用事件

在UIApplication中处理的系统事件时,只需转到_delegate这个类去处理, 这个类对象就是应用程序委托对象。我们可以从应用程序的单例类对象中得到应用程序委托的对象 
UIApplicationDelegate* myDelegate = [[UIApplication sharedApplication] delegate];
  1. //定义AppDelegate类的对象 apd   
  2.     //然后利用下面的方法来使用这个对象,这样才能把值传到AppDelegate中  
  3.     self.apd = (AppDelegate*)[[UIApplication sharedApplication]delegate];  
  4.     //把这个类中的TextDb对象赋给 AppDelegate类中的TextDb对象   
  5.     self.apd.iTextDb = self.iTextDb;  
1.设置摇动手势的时候,是否支持redo,undo操作
   //摇动手势,是否支持redo undo操作。
   //3.0以后引进,缺省YES
    [UIApplicationsharedApplication].applicationSupportsShakeToEdit =YES;
 
2.阻止屏幕变暗进入休眠状态

   //阻止屏幕变暗,慎重使用,缺省为no 2.0
    [UIApplicationsharedApplication].idleTimerDisabled =YES;

慎重使用本功能,因为非常耗电。

 
3.显示联网状态

    //显示联网标记 2.0
    [UIApplicationsharedApplication].networkActivityIndicatorVisible =YES;

 
4.在map上显示一个地址

   NSString* addressText =@"1 Infinite Loop, Cupertino, CA 95014";
   // URL encode the spaces
    addressText =  [addressTextstringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
   NSString* urlText = [NSStringstringWithFormat:@"http://maps.google.com/maps?q=%@", addressText];
   
    [[UIApplicationsharedApplication]openURL:[NSURLURLWithString:urlText]];

 
5.发送电子邮件

   NSString *recipients =@"mailto:first@example.com?cc=second@example.com,third@example.com&subject=Hello from California!";
   NSString *body =@"&body=It is raining in sunny California!";
   
    NSString *email = [NSStringstringWithFormat:@"%@%@", recipients, body];
    email = [emailstringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
   
    [[UIApplicationsharedApplication]openURL:[NSURLURLWithString:email]];

 
6.打电话到一个号码

   // Call Google 411
    [[UIApplicationsharedApplication]openURL:[NSURLURLWithString:@"tel://8004664411"]];

 
7.发送短信 
    // Text to Google SMS
    [[UIApplicationsharedApplication]openURL:[NSURLURLWithString:@"sms://466453"]];
 
8.打开一个网址

   // Lanuch any iPhone developers fav site
    [[UIApplicationsharedApplication]openURL:[NSURLURLWithString:@"http://itunesconnect.apple.com"]]; 

转载于:https://www.cnblogs.com/ly1991/p/4723292.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值