摘要:
一 介绍 /** * NSURLSession是在2013年的WWDC上,由Apple提出的NSURLConnection继任者的:NSURLSession. */ /** * NSURLSession为ios7中的新网络接口,与NSURLConnection是并列的,且可以支持后台相关的网络操作的 阅读全文
摘要:
NSMutableParagraphStyle *paragraphStyle =[ [NSMutableParagraphStyle alloc] init]; paragraphStyle.lineSpacing = 50; NSDictionary *attributes = @{ NSFon 阅读全文
摘要:
(原本取至D了个L微信公众号) UITableView 详解 一、建立 UITableView DataTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)];[DataTable setDelegate:self 阅读全文
摘要:
- (void)viewDidLoad { [super viewDidLoad]; self.geocoder = [[CLGeocoder alloc]init]; // 设置地图可缩放 self.mapView.zoomEnabled = YES; // 设置地图可滚动 self.mapVie 阅读全文
摘要:
- (void)viewDidLoad { [super viewDidLoad]; // 创建地址解析器 self.geocoder = [[CLGeocoder alloc] init]; } - (IBAction)encodeTapped:(id)sender { // 获取用户输入的地址字 阅读全文
摘要:
- (void)clickLongPress:(UILongPressGestureRecognizer *)longPress { CGPoint point = [longPress locationInView:mapView]; CLLocationCoordinate2D coord = 阅读全文