2014年1月7日

EKReminder 根据时间提醒 和地理围栏

摘要: http://www.techotopia.com/index.php/Using_iOS_6_Event_Kit_to_Create_Date_and_Location_Based_Reminders根据此网址一步一步学习,可以基本了解。-(BOOL)TimeReminder:(NSString *)title date:(NSDate *)date{ BOOL result=YES; if (self.eventStore==nil) { self.eventStore=[[EKEventStore alloc] init]; [self.eventStore requestAcce... 阅读全文

posted @ 2014-01-07 18:09 小白说我是2B 阅读(665) 评论(0) 推荐(0) 编辑

在block 内部修改变量

摘要: 例如 NSString * text;在block中直接赋值,会报错__block NSString * text;这样声明就可以了 阅读全文

posted @ 2014-01-07 17:58 小白说我是2B 阅读(159) 评论(0) 推荐(0) 编辑

ios location

摘要: CLGeocoder *geocoder = [[CLGeocoder alloc] init]; [geocoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error){ for (CLPlacemark *place in placemarks) { NSLog(@"name,%@",place.name); // 位置名 NSLog(@"thoro... 阅读全文

posted @ 2014-01-07 16:59 小白说我是2B 阅读(190) 评论(0) 推荐(0) 编辑

导航