iOS开发中的小知识点

  1. UITextFeild文字修改后调用一段程序,每次做这个都用通知其实还有一个办法。这样写显得更简练

     textField.addTarget(self, action: #selector(self.didChanged(textField:)), for:.editingChanged)
    
  2. 如果有一个view中使用了touch事件相关的功能,把它放到一个有手势的superview中。它的touch功能很大可能失效。解决办法:view中的touch功能使用手势完成

  3. 关于锁的文章:http://www.jianshu.com/p/1e59f0970bf5

  4. 苹果外设相关文章:http://www.jianshu.com/p/233be81b8ead

  5. 崩溃日志处理命令

     dwarfdump --uuid "*.app.dSYM"
     xcrun atos -arch arm64 -o "*.app.dSYM/Contents/Resources/DWARF/*" -l 0x10074c000 0x0000000100e087c4
    
  6. UIButton selected状态下的高亮配置 UIControlStateHighlighted|UIControlStateSelected

你可能感兴趣的:(iOS开发中的小知识点)