Raymond Liao

Results 8 comments of Raymond Liao

Hi man, you just need change ``` var a = UInt32(0x67452301) var b = UInt32(0xefcdab89) var c = UInt32(0x98badcfe) var d = UInt32(0x10325476) ``` to ``` var a: UInt32 =...

hi man, you just need change ``` var a = UInt32(0x67452301) var b = UInt32(0xefcdab89) var c = UInt32(0x98badcfe) var d = UInt32(0x10325476) ``` to ``` var a: UInt32 =...

我也遇到这个问题: 1. 因为Xcode10构建的包在iOS9.1,9.2机型会导致程序崩溃,所以我需要在Xcode9.4构建; 2. 不知道什么原因(有可能是系统升级到10.14.1)使用Xcode9.4开发特别不方便,例如跳转系统函数定义经常出问号,所以我在Xcode10上开发 现在的问题是HandyJSON 4.2.0+的版本在Xcode10上工作正常,但是在Xcode9.4.1上: ``` Undefined symbols for architecture x86_64: "_swift_getFieldAt", referenced from: HandyJSON.Metadata.Class._propertyDescriptionsAndStartPoint() -> ([HandyJSON.Property.Description], Swift.Int32?)? in Metadata.o HandyJSON.Metadata.Struct.propertyDescriptions() -> [HandyJSON.Property.Description]? in Metadata.o ld: symbol(s) not...

因为最近发现 Xcode10 打包可以在 iOS 9的机型上使用,所以直接用新版本就可以了。

I think it is the Flutter bug not iOS cache issue. I've tried the Native iOS project for localized Launch Screen, it works well. Here is the sample: https://github.com/gaoshanyu/pie/tree/scaling-views-to-complement-text

I did a swift version of the MBProgressHUD: https://github.com/growup-together/KProgressHUD Wish for help.