码迷,mamicode.com
首页 > 移动开发 > 详细

iOS一些常用的小知识点

时间:2015-03-02 09:26:14      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

  //获取全局的Delegate对象,这样我们可以调用这个对象里的方法和变量

    [[UIApplication sharedApplication] delegate];

    //获得程序的主Bundle

    NSBundle *bundle = [NSBundle mainBundle];

    /*

     在程序中播放声音

     1.添加AudioToolbox框架

     */

    NSString *path = [bundle pathForResource:@"soundFileName" ofType:@"wav"];

    SystemSoundID soundId;

    AudioServicesCreateSystemSoundID((__bridge CFURLRef)([NSURL URLWithString:path]), &soundId);

    AudioServicesPlayAlertSound(soundId);

    //捕捉程序关闭或者进入后台事件

    UIApplication *application = [UIApplication sharedApplication];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:) name:UIApplicationWillResignActiveNotification object:application];

    

    

    

}

- (void)applicationWillResignActive:(NSNotification *)noti{

    

}

#pragma mark -- 获取截屏

- (UIImage *)getScreenShot{

    UIGraphicsBeginImageContext(self.view.bounds.size);

    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return image;

}

 

iOS一些常用的小知识点

标签:

原文地址:http://www.cnblogs.com/zm823080538/p/4307927.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!