space項目記錄
三方:
1、高德地圖
繪制區域顯示 圖層、折線、圓
讓指定的坐標顯示在屏幕中央
@property (nonatomic,assign) CLLocationCoordinate2D startCoordinated;
2、在運用第三方 label中的點擊事件的 需要自己取消代理
[labels yb_addAttributeTapActionWithStrings:@[@"修改信息"] delegate:nil];
數據處理:
1、數據加密解密
UI:
1、在可變的tableview中 tableview 的高度 和cell高度 不能設置為0 的情況 否則cellForRow不會執行
撥打座機
NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"01053822880"];
UIWebView * callWebview = [[UIWebView alloc] init];
[callWebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
[self.view addSubview:callWebview];
2、 label 特殊字符變行
_titleText.lineBreakMode=NSLineBreakByCharWrapping;
self.startCoordinated = self.mapView.userLocation.coordinate;
3、在Button中設置圓角和陰影是,可以用imageview代替,給imageview添加tag手勢
space項目記錄