波波Zac
波波Zac
我们有一个页面使用了IJKMediaPlayer作为播放器内核,当我们导入CocoaDebug后,即便不enable,也会导致该页面出现操控问题(拖动不正常,播放完成后,返回按钮不可点击)。我们目前还在排查是IJKMediaPlayer的问题还是我们自己代码的问题。
反复滑来滑去有纪律触发crash,问题出在UIView+STFrame的 - (void)setSt_bottom:(CGFloat)b { self.frame = CGRectMake(self.st_left, b - self.st_height, self.st_width, self.st_height); } warning: could not load any Objective-C class information. This will significantly reduce the quality of type information...
tableview最下面会被tabbar遮挡 尝试设置automaticallyAdjustsScrollViewInsets但没有效果,可能需要监控tableview的contentOffset来整体上移tableview
建议Rely参数加入对UIBarButtonItem的支持
node* pcur=head->next; 此处应修改为 node* pcur=head, 否则输出时将会丢失第一个元素。
I got a _Package Resolution Failed_ message when try to import it to my new project. The Xcode version is 15.3.
sheet有一个title属性,能否在调用sheet的时候把title暴露出来,这样可以做部分定制化。
我们的项目会在极端的情况下,同时触发页面pop和cell滑动关闭(CupertinoLeftScrollState.close) 这种情况下,animationController会提早释放,导致animationController.animateTo(0)执行报错。 NoSuchMethodError: The method 'stop' was called on null.