美文网首页A原理/底层
iOS_模拟内存警告

iOS_模拟内存警告

作者: 青葱烈马 | 来源:发表于2016-05-11 19:19 被阅读1032次

有三种方法可以实现内存警告。

1.模拟器菜单:Hardware-》Simulate Memory Warning

2.用程序的方法实现,只需要一句代码:

CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), (CFStringRef)@"UISimulatedMemoryWarningNotification", NULL, NULL, true);  

3.这是私有的 API 方法:

SEL memoryWarningSel = @selector(_performMemoryWarning);  
   if ([[UIApplication sharedApplication] respondsToSelector:memoryWarningSel]) {  
    [[UIApplication sharedApplication] performSelector:memoryWarningSel];  
   }else {  
    NSLog(@"%@",@"Whoops UIApplication no loger responds to -_performMemoryWarning");  
   }  

iOS6.0之后
1 系统发出警告或者ViewController本身调用导致didReceiveMemoryWarning被调用
2 - (void)didReceiveMemoryWarning;中释放当前不在使用的资源

-(void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];//即使没有显示在window上,也不会自动的将self.view释放。注意跟ios6.0之前的区分
    // Add code to clean up any of your own resources that are no longer necessary.
    // 此处做兼容处理需要加上ios6.0的宏开关,保证是在6.0上使用的,6.0以前屏蔽以下代码,否则会在下面使用self.view时自动加载viewDidUnLoad
    if ([[UIDevice currentDevice].systemVersion floatValue] >= 6.0) {
        //需要注意的是self.isViewLoaded是必不可少的,其他方式访问视图会导致它加载.
        if (self.isViewLoaded && !self.view.window)// 是否是正在使用的视图
        {
            // Add code to preserve data stored in the views that might be
            // needed later.
            // Add code to clean up other strong references to the view in
            // the view hierarchy.
            self.view = nil;// 目的是再次进入时能够重新加载调用viewDidLoad函数。
        }
    }
}

相关文章

  • iOS_模拟内存警告

    有三种方法可以实现内存警告。 1.模拟器菜单:Hardware-》Simulate Memory Warning ...

  • iOS_响应内存警告

    好的应用应该在系统内存警告的情况下,释放一些可以重新创建的资源. 在 iOS 中,我们可以在应用程序委托对象, 视...

  • iOS 真机模拟内存警告

    //联系人:石虎QQ:1224614774昵称:嗡嘛呢叭咪哄 一、概念 1.内存警告原理 *iphone下每个ap...

  • 内存警告

    此篇文章仅为记录自己所遇到的内存警告时所产生的原因(持续更新...),不喜勿喷,本就不是写来让别人看的。若有错误,...

  • 收藏文章

    ios 处理内存警告

  • iOS_内存泄漏

    为了测试内存泄漏方便,封装了一个Framework。 GitHub地址:https://github.com/we...

  • iOS内存警告

    1.当iOS系统内存不足,会发出内存警告的通知。首先调用的是 AppDelegate 里重新的内存警告代理方法 2...

  • AppDelegate

    delegate 特殊--内存警告的时候

  • SDWebImage常用方法

    1、常用的方法 2、内存处理,当app收到内存警告时

  • Xcode调试Bug技巧

    一. MRC 工程完成后保证Xcode不能出现黄色警告以及蓝色警告,黄色警告则为潜在的Bug,蓝色警告则为内存释放...

网友评论

    本文标题:iOS_模拟内存警告

    本文链接:https://www.haomeiwen.com/subject/nwyurttx.html