标签:bsp wrap row 屏幕 显示 request fan tco cti
三方:
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手势
标签:bsp wrap row 屏幕 显示 request fan tco cti
原文地址:https://www.cnblogs.com/xujiahui/p/9538280.html