240 发简信
IP属地:广东
  • Swift4学习01--String

    1.字符串中直接插值 let strNum = 3 let message = "\(strNum) times 2.5 is \(Double(strNum) * 2.5)...

  • iOS 画板/涂鸦 你画我猜 demo (OC版)

    下载地址:https://github.com/linsendear/LSDrawTest 录制脚本: 播放脚本: 这个demo参考了下面两个项目 https://githu...

  • iOS 16进制与10进制的互转

    一、整形装换成两个字节 intvalue =456; unsignedcharbyte1 = (value &0xff00)>>8;//高8位 unsignedcharbyt...

  • 我也去搜搜看

  • 使用WKWebView替换UIWebView

    开发App的过程中,常常会遇到在App内部加载网页,通常用UIWebView加载。这个自iOS2开始使用的网页加载器一直是开发的心病:加载速度慢,占用内存多,优化困难。如果加...