摘要:
#import "ViewController.h" #import #import #import @interface ViewController () @property(nonatomic ,strong)MPMoviePlayerController * PlayerController; @end @implementation ViewController -... 阅读全文
摘要:
//系统的大头针 MKPinAnnotationView * pin = [[MKPinAnnotationView alloc]init]; 系统的大头针 可以就该大头针的颜色 等等 阅读全文
摘要:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ //定位 CLGeocoder * gercode = [[CLGeocoder alloc]init]; self.gercode = gercode; //地理编码 [gercode geocod... 阅读全文
摘要:
#import "ViewController.h" #import #import @interface ViewController () @property(nonatomic ,strong)MKMapView * map; @end @implementation ViewController - (void)viewDidLoad { [super vie... 阅读全文
摘要:
Objective C的runtime技术功能非常强大,能够在运行时获取并修改类的各种信息,包括获取方法列表、属性列表、变量列表,修改方法、属性,增加方法,属性等等,本文对相关的几个要点做了一个小结。 目录: (1)使用class_replaceMethod/class_addMethod函数在运行 阅读全文
摘要:
推送通知跟NSNotification有所区别: NSNotification是抽象的,不可见的 推送通知是可见的(能用肉眼看到) iOS中提供了2种推送通知 本地推送通知(Local Notification) 远程推送通知(Remote Notification) 推送通知有5种不同的呈现效果: 阅读全文
摘要:
iOS的应用程序的生命周期,还有程序是运行在前台还是后台,应用程序各个状态的变换,这些对于开发者来说都是很重要的。 iOS系统的资源是有限的,应用程序在前台和在后台的状态是不一样的。在后台时,程序会受到系统的很多限制,这样可以提高电池的使用和用户体验。 //开发app,我们要遵循apple公司的一些 阅读全文
摘要:
#import "ViewController.h" #import @interface ViewController () @property(nonatomic ,strong)CLLocationManager * manager; @end @implementation ViewController - (void)viewDidLoad { [super vie... 阅读全文
摘要:
正则表达式在编写处理字符串的程序时,经常会有查找符合某些复杂规则的字符串的需要。正则表达式就是用于描述这些规则的工具。换句话说,正则表达式就是记录文本规则的代码正则表达式是对字符串操作的一种逻辑公式,用事先定义好的一些特定字符、及这些特定字符的组合,组成一个"规则字符串",这个"规则字符串"用来表达 阅读全文
摘要:
#import "ViewController.h" #import "Person.h" @interface ViewController () @property(nonatomic ,strong)Person * people; @end @implementation ViewController - (void)viewDidLoad { [super viewDi... 阅读全文