Try M1 mac ...
Post
Replies
Boosts
Views
Activity
😀
Now for Apple silicon mac ,
You must need add this ipad multitasking
If you dont want use all orientations in iPad
You cant disable roration with iPad multitasking.
Util now , I dont find way to solve it
So despair
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/***.framework/***' 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
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];
}
I meet same problem.
And I do follow action to avoid it
But a little problem still live
That problem is I need use navigationBarTitle(self.selectTitle, displayMode: .inline)
can't use large title
struct AppTabNavigation: View {
@State private var selection: Tab = .menu
@State private var selectTitle: String = "menu"
var body: some View {
NavigationView {
TabView(selection: $selection) {
SmoothieMenu()
.tabItem {
Label("Menu", systemImage: "list.bullet")
.accessibility(label: Text("Menu"))
}
.tag(Tab.menu)
FavoriteSmoothies()
.tabItem {
Label("Favorites", systemImage: "heart.fill")
.accessibility(label: Text("Favorites"))
}
.tag(Tab.favorites)
RewardsView()
.tabItem {
Label("Rewards", systemImage: "seal.fill")
.accessibility(label: Text("Rewards"))
}
.tag(Tab.rewards)
RecipeList()
.tabItem {
Label("Recipes", systemImage: "book.closed.fill")
.accessibility(label: Text("Recipes"))
}
.tag(Tab.recipes)
}
.navigationBarTitle(self.selectTitle, displayMode: .inline)
.onChange(of: selection, perform: { value in
print(value)
switch value {
case .menu:
self.selectTitle = "menu"
case .favorites:
self.selectTitle = "favorite"
case .rewards:
self.selectTitle = "rewards"
case .recipes:
self.selectTitle = "recipes"
}
})
}
}
}
Same problem to me .
Web page can show meta banner. And can open App Clip
iOS14.beta5.iPhoneSE
XCode12.beta5
WebUrl:https://example.com/www/ios.htmlconfig a meta banner
Local Experience Url Prefix:https://example.com/
And at WebPage I can see Meta Banner And can open that installed App Clip
But still can not see local experience config card .
I hava change local expericen action to view or play , but same as open
How can I solove this ?
Best Wished