space项目记录

Posted xujiahui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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项目记录的主要内容,如果未能解决你的问题,请参考以下文章

记录最近项目中自己遇到的一些小问题

linux服务器报No space left on device错误的解决过程记录

Unity3d--Space Shooter(官方教程)--学习感想

No buffer space available 一次神奇的维护经历

tomcat 内存溢出问题(OutOfMemoryError: PermGen space)

Java heap space设置方法记录