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

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

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

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