Wesley Zhang

Results 10 comments of Wesley Zhang

14在手机上太小了 老年人可能完全看不到

2020都快结束,还没人解决么?

AppStore 10.11.6 Xcode8.2 看不到菜单

听说要升级系统到10.12 我先尝试下 稍候给大家反馈

的确是,升级后系统设置扩展里面就能找到了

You should check the button's target number in (intrinsicContentSize) method po self.allTargets In my case i found a statistical lib add a touch event to all button at runtime

> followed steps here: https://docs.expo.dev/workflow/upgrading-expo-sdk-walkthrough/ > > ``` > npm install expo@latest > npx expo install --fix > ``` thanks

@interface SloppyScrollView : UIScrollView @end ``` - (BOOL)gestureRecognizerShouldBegin:(UIPanGestureRecognizer *)gestureRecognizer { CGPoint velocity = [gestureRecognizer velocityInView:self]; if(velocity.x > 0 && self.contentOffset.x == 0) { return NO; } return YES; } ```...