Post

Replies

Boosts

Views

Activity

Reply to Xcode 12 beta 4 - error compiling for Simulator
Some respondents have solved this problem on Intel chip MAC machines But If I want run this on Apple Silicon Mac ,How to fix , In Apple Silicon , I meet same problem building for iOS Simulator, but linking in object file built for iOS, file '../SDK/xxx.framework/xxx' for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) How to fix it ? Hope someone can give a perfect answer
Nov ’20
Reply to iOS14 missing TabBar on popping multiple ViewControllers
Same problem to me You can re-write UINavigationController push function // fix: sometimes push and then popback no tabbar error (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated {   if (self.viewControllers.count == 1) {     viewController.hidesBottomBarWhenPushed = YES;   } else {     viewController.hidesBottomBarWhenPushed = NO;   }   [super pushViewController:viewController animated:animated]; }
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’20