摘要:
本文参考:iOS Application Programming Guide – The Application Runtime EnvironmentiOS运行环境的设计目标,快速安全的执行应用程序。快速启动,短暂使用一个典型情况是,用户从口袋中拿出设备,只使用几秒钟或者几分钟,然后再次放在口袋里。 这要求:快速启动应用使用后能尽快退出特殊的系统行为在很多地方,iOS都和mac os x特性和行为一样。但是有些情况和mac os x不同:虚拟内存系统管理程序内存,iOS和mac os x拥有相同的特性和行为方式。在iOS下,每个程序仍然拥有自己的虚拟地址空间,但是和mac os x不同的是, 阅读全文
随笔档案-2010年12月
keychain services on iPhone
2010-12-29 17:41 by Tracy E, 1715 阅读, 收藏,
摘要:
keychain services on iPhone:# When a user backs up iPhone data,the keychain data is backed up but the secrets in the keychain remain encrypted in the backup.The keychain password is not included in the backup.Therefore,passwords and other secrets stored in the keychain on the iPhone cannot be used b 阅读全文
iphone获取地址的详细信息
2010-12-20 17:17 by Tracy E, 814 阅读, 收藏,
摘要:
- (id)initWithCoordinate:(CLLocationCoordinate2D)coordinate {if (self = [super init]) {// Custom initialization reverseGeocoder = [[MKReverseGeocoder alloc] initWithCoordinate:coordinate];reverseGeocoder.delegate = self;[reverseGeocoderstart]; //⋯⋯}returnself;} #pragma mark MKReverseGeocoderDelegate 阅读全文
浙公网安备 33010602011771号