当前位置:  编程技术>移动开发
本页文章导读:
    ▪Core Data结构修改后,在AppStore中更新升级crash的有关问题        Core Data结构修改后,在AppStore中更新升级crash的问题. 问题描述: 在苹果的错误收集中有这么一个问题: 使用的xmpp框架,在调整为适应ios5的版本后出现一个导致程序crash问题。但是原来的.........
    ▪ ADIS16400/ADIS16405带磁力计的3轴惯性传感器(1)        ADIS16400/ADIS16405带磁力计的三轴惯性传感器(1)ADIS16400/ADIS16405带磁力计的三轴惯性传感器(1)   ......
    ▪ 从源码中Activity 的定义回理解 Activity       从源码中Activity 的定义来理解 Activity首先我们来看下源码中源于Activity的定义: public class Activity extends ContextThemeWrapper implements LayoutInflater.Factory2, Window.Callback, KeyEvent.Callback, .........

[1]Core Data结构修改后,在AppStore中更新升级crash的有关问题
    来源: 互联网  发布时间: 2014-02-18
Core Data结构修改后,在AppStore中更新升级crash的问题.

问题描述:

在苹果的错误收集中有这么一个问题:

使用的xmpp框架,在调整为适应ios5的版本后出现一个导致程序crash问题。但是原来的xmpp代码没有改变,那么问题在哪呢?

报错如下:

view plain
  • BUG监听报告:  
  • 手机型号: iPhone OS , 版本: 4.3   
  • 程序名称: xxx, 版本:1.3 
  • 用户: xxx 
  • 2011-11-13 16:17:31.506 [11747:307] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'This NSPersistentStoreCoordinator has no persistent stores. It cannot perform a save operation.'  
  • *** Call stack at first throw:  
  • (  
  • 0 CoreFoundation 0x344aaed3 __exceptionPreprocess + 114  
  • 1 libobjc.A.dylib 0x33975811 objc_exception_throw + 24  
  • 2 CoreData 0x338f29c1 -[NSPersistentStoreCoordinator executeRequest:withContext:error:] + 196  
  • 3 CoreData 0x3389253d -[NSManagedObjectContext save:] + 700  
  • 4 0x00045145 -[XMPPCapabilitiesCoreDataStorage setCapabilities:forHash:algorithm:] + 444  
  • 5 0x00042121 -[XMPPCapabilities xmppStream:willSendPresence:] + 232  
  • 6 0x0003ca57 -[XMPPStream sendElement:withTag:] + 342  
  • 7 0x0003c8f5 -[XMPPStream sendElement:] + 28  
  • 8 0x0004592f -[iPhoneXMPP goOnline] + 54  

  • 解决办法:
    在stackoverflow找到解决办法:
    http://stackoverflow.com/questions/1091228/i-keep-on-getting-save-operation-failure-after-any-change-on-my-xcode-data-mod

    需要修改coredata的persistentstorecoordinator的代理实现方法,添加options,使得当coredata数据模型发生变化时,自动更该合并变化。

    代码如下:

    view plain
  • - (NSPersistentStoreCoordinator *)persistentStoreCoordinator {  
  •   
  •     if (persistentStoreCoordinator != nil) {  
  •         return persistentStoreCoordinator;  
  •     }  
  •   
  •     NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"database.sqlite"]];  
  •   
  •     NSError *error = nil;  
  •     NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:  
  •                                                  [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,  
  •                                                  [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];  
  •     persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];  
  •     if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error]) {  
  •         // Handle error  
  •     }      
  •   
  •     return persistentStoreCoordinator;  
  • }  
  • 分享到: 


        
    [2] ADIS16400/ADIS16405带磁力计的3轴惯性传感器(1)
        来源: 互联网  发布时间: 2014-02-18
    ADIS16400/ADIS16405带磁力计的三轴惯性传感器(1)

    ADIS16400/ADIS16405带磁力计的三轴惯性传感器(1)

     


        
    [3] 从源码中Activity 的定义回理解 Activity
        来源: 互联网  发布时间: 2014-02-18
    从源码中Activity 的定义来理解 Activity

    首先我们来看下源码中源于Activity的定义:

    下面我们来详细分析每一部分的具体意义:

    extends ContextThemeWrapper表示Activity本质上是一个ContextThemeWrapper,而ContextThemeWrapper具体是什么呢?看ContextThemeWrapper在源码中的定义:

    可见ContextThemeWrapper是一个ContextWrapper,继续往下看:

    ContextWrapper本质上是一个Context,context 的定义如下:

    整体结构如下图所示(图引用自:http://blog.csdn.net/qinjuning/article/details/7310620):

     

    Context是一个抽象类,因此可以知道Activity其实就是一个Context,并实现了一些接口,如何理解Context呢?

    Context 俗称上下文,在很多对象定义中我们都用到了Context,例如ImageViewimageView = new ImageView(this); 这里的this就是当前Activity所在的Context,源码中对Context的解释如下:

    Interface to global information about anapplication environment. This is an abstract class whose implementation isprovided by the Android system. It allows access to application-specificresources and classes, as well as up-calls for application-level operationssuch as launching activities, broadcasting and receiving intents, etc.

    Context只是一个接口,真正实现Context功能的是ContexImpl类,为了了解Context具体有什么作用,我们先来了解下Context中定义了哪些接口:


    以上是Context众多接口中的一个片段,看着接口是不是很熟悉?其实我们经常用到的一些函数其实都是在Context中定义的,因此Context可以被认为是用来封装一下通用功能的一个类,当然这个类不仅仅是针对Activity,最常见的service也是继承自Context,以及一大堆类都继承自Context,具体可参考:http://developer.android.com/reference/android/content/Context.html,关于Context的具体介绍可参考:http://blog.csdn.net/qinjuning/article/details/7310620

    ContextWrapper仅仅是对Context的简单封装,如果要对Context修改,我们只需要修改ContextWrapper,而不需要对通用的Context进行修改,ContextWrapper的目的仅此而已。而ContextThemeWrapper只是在ContextWrapper的基础上加入了Theme相关的一些内容,对于Activity来说需要处理一些Theme相关的东西,但是对于Service来说只需继承ContextWrapper,因为Service不需要处理Theme相关的内容。

    分析完extends部分,我们再来看下implements部分,extends决定了Activity的本质,implements部分可以认为是对Activity的扩展。

    • LayoutInflater.Factory:通过LayoutInflater来inflate一个layout时的回调接口
    • Window.Callback: Activity 靠这个接口才有机会对消息进行处理,这部分涉及到消息的传递,以后将专门介绍。
    • ComponentCallbacks2:定义了内存管理的接口,内存过低时的回调和处理处理接口
    • KeyEvent.Callback:键盘事件响应的回调接口,例如onKeyDown()等
    • OnCreateContextMenuListener:上下文菜单显示事件的监听接口,通过实现该方法来处理上下文菜单显示时的一些操作

    通过以上分析,我们大概了解了Activity具体是什么了,这对以后理解Activity应该能带来一定的帮助。


    由于本人刚学Anroid不久,有什么不对的地方请麻烦指正~

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     

        
    最新技术文章:
    ▪Android开发之登录验证实例教程
    ▪Android开发之注册登录方法示例
    ▪Android获取手机SIM卡运营商信息的方法
    ▪Android实现将已发送的短信写入短信数据库的...
    ▪Android发送短信功能代码
    ▪Android根据电话号码获得联系人头像实例代码
    ▪Android中GPS定位的用法实例
    ▪Android实现退出时关闭所有Activity的方法
    ▪Android实现文件的分割和组装
    ▪Android录音应用实例教程
    ▪Android双击返回键退出程序的实现方法
    ▪Android实现侦听电池状态显示、电量及充电动...
    ▪Android获取当前已连接的wifi信号强度的方法
    ▪Android实现动态显示或隐藏密码输入框的内容
    ▪根据USER-AGENT判断手机类型并跳转到相应的app...
    ▪Android Touch事件分发过程详解
    ▪Android中实现为TextView添加多个可点击的文本
    ▪Android程序设计之AIDL实例详解
    ▪Android显式启动与隐式启动Activity的区别介绍
    ▪Android按钮单击事件的四种常用写法总结
    ▪Android消息处理机制Looper和Handler详解
    ▪Android实现Back功能代码片段总结
    ▪Android实用的代码片段 常用代码总结
    ▪Android实现弹出键盘的方法
    ▪Android中通过view方式获取当前Activity的屏幕截...
    ▪Android提高之自定义Menu(TabMenu)实现方法
    ▪Android提高之多方向抽屉实现方法
    建站其它 iis7站长之家
    ▪Android提高之MediaPlayer播放网络视频的实现方法...
    ▪Android提高之手游转电视游戏的模拟操控
     


    站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3