ApesTalk
ApesTalk
Hello, I am using WTReTextField in my project. I want to call setText: method and let it show a formatted string when WTReTextField is appear, so i overrided the WTReTextField's...
如果我这样使用的话,数组a却依然是空的,这是为什么呢? NSString *str = @"var a = callClassMethod('NSMutableArray', 'array'); " "var n = callClassMethod('NSNumber', 'numberWithInteger:', 1024); " "callInstanceMethod(a, 'addObject:', n); " "console.log(a);" "})"; [Felix evalString:str];
“你最多只能选择%zd张照片”和“请至少选择%zd张照片"提示文案建议放出来允许使用者自己配置。 比如在同时可选择图片和视频的时候,如果超出最大可选数,弹出“你最多只能选择%zd张照片”,稍有不妥。
你好,我有一个列表页面,每个Cell里面有一个UIImageView,用的Masonry布局,在模拟器上测试的。 当我用: ``` _logoView.layer.borderWidth = 0.5f; _logoView.layer.borderColor = HEXCOLOR(0xdddddd).CGColor; _logoView.layer.cornerRadius = 3; _logoView.layer.masksToBounds = YES; ``` 的情况下,等页面全部加载完毕,内存不再变化的时候显示的是56.3MB。 当我用: ``` [_logoView zy_cornerRadiusAdvance:3 rectCornerType:UIRectCornerAllCorners]; [_logoView zy_attachBorderWidth:0.5 color:HEXCOLOR(0xdddddd)]; ``` 的情况下,等页面全部加载完毕,内存不再变化的时候显示的是60.7MB。 而且每次运行跑起来对比,都是使用你的这个方法比使用cornerRadius和masksToBounds方法更消耗内存一点,这个属于正常现象吗?
When i pod FMDB/SQLCipher, my app App stucked at !pGroup->lru.pLruPrev->isAnchor in sqlite3.c. ps: i also use system libsqlite3.tdb in my app.
When i upload a 3MB image,the memory increased to 300M+ and received memory warning and then crash.How can i deal with this bug?