开源控件: cocoacontrols.com
日期格式: nadateformatter.com
支持多语言:
1、在项目中个给整个项目添加多语言支持
2、给Info.Plist文件添加多语言支持: InfoPlist.strings
3、给程序中字符串增加多语言支持:
Localizable.strings
NSLocalizedString()...
数据持久化:
- NSUserDefaults: 与安装有关
- writeToFile... ->plist
- NSKeyedArchiver(NSCoding)
- KeyChain : 与应用有关
- NSFileHandle
- 数据库/ CoreData...
- 网络存储
- JSON/XML ... 存文件
沙盒:
- tmp
- Documents: 永久存放...
- Library/Caches
BMKPointAnnotation表示标注点数据
- coordinate
- title
- subtitle
BMKPintAnnotationView展示标注点 - pinColor
- 气泡(paopaoView)
- leftAccessoryView
- rightAccessoryView
- image
如果自定义气泡
- BMKActionPaopaoView(customView)
self:
处于成员方法(实例方法)中, 代指当前调用该方法的对象;
处于类方法中, 代指当前类