杂项(支持多语言、BMKPointAnnotation表示标注点数据)

开源控件: cocoacontrols.com

日期格式: nadateformatter.com

支持多语言:

1、在项目中个给整个项目添加多语言支持
2、给Info.Plist文件添加多语言支持: InfoPlist.strings
3、给程序中字符串增加多语言支持:
Localizable.strings
NSLocalizedString()...

数据持久化:

  1. NSUserDefaults: 与安装有关
  2. writeToFile... ->plist
  3. NSKeyedArchiver(NSCoding)
  4. KeyChain : 与应用有关
  5. NSFileHandle
  6. 数据库/ CoreData...
  7. 网络存储
  8. JSON/XML ... 存文件

沙盒:

  1. tmp
  2. Documents: 永久存放...
  3. Library/Caches

BMKPointAnnotation表示标注点数据

  • coordinate
  • title
  • subtitle
    BMKPintAnnotationView展示标注点
  • pinColor
  • 气泡(paopaoView)
  • leftAccessoryView
  • rightAccessoryView
  • image

如果自定义气泡

  • BMKActionPaopaoView(customView)

self:

处于成员方法(实例方法)中, 代指当前调用该方法的对象;
处于类方法中, 代指当前类

你可能感兴趣的:(杂项(支持多语言、BMKPointAnnotation表示标注点数据))