Mickey

Results 4 issues of Mickey

Looking forward to your reply!!! The final result is as follows: `- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. self.window = [[UIWindow alloc] initWithFrame:[UIScreen...

### Description [Description of the issue] ### Steps to Reproduce [Steps or usage snippet reproducing the issue] 1. [First Step] 2. [Second Step] 3. [and so on...] ``` ``` **Expected...

iOS 13 中,popOverVC的箭头包含在了vc.view中,导致布局错乱。 解决如下: ``` - (void)viewWillLayoutSubviews { // 关键点在这里, 这里获取到layoutFrame,使用这个值来布局,就会让出`arrow`所占用的位置。 CGRect layoutFrame = self.view.safeAreaLayoutGuide.layoutFrame; self.bgView.frame = layoutFrame; CGRect frame = self.view.frame; self.bottomView.frame = CGRectMake(0, CGRectGetHeight(frame) - 30, CGRectGetWidth(frame), 30);...