Posts

Post not yet marked as solved
4 Replies
It looks like a machine problem, I have a mbp 2019 quad core i5 and is super slow in the sample projects. Yours looks a little bit older Maybe you can try with a new empty project to see if that works, and then proceed with the 4 projects in the documentation of visionOS
Post not yet marked as solved
1 Replies
have not tried but I’m pretty sure this will fail since firebase package is built for other frameworks, not visionOS however you can check if tweaking the pods project may help to target them to your new target
Post marked as solved
2 Replies
Hey! For anyone in the future, the solution to this is to add a buttonStyle modifier to the button :) .buttonStyle(.plain)
Post not yet marked as solved
5 Replies
Same here. I'm currently in Xcode last beta before GM. Has anyone tried in GM Seed 2?
Post marked as solved
7 Replies
Hi guys, this was finally solved. It was an Xcode bug. Just update to Mac OS Catalina beta 5 and Xcode 11 beta 5. You may have to remove your files and add them again for this to work 🙂
Post marked as solved
7 Replies
Hi @Claude31, let me clarify:I created a new flie of type UIViewController, with create xib option enabled.After that, I added an IBOutlet as follows:@IBOutlet weak var aLabel: UILabel! When I go to my xib, there is no Outlet to be connected in the Connections Inspector with name aLabel. I can only see my view with a warning sign at the right.My AViewController is correctly set on the Identity and Attributes inspector
Post not yet marked as solved
31 Replies
Beta 4 is now live, I'm downloading and will try everything as soon as I can
Post not yet marked as solved
31 Replies
Post not yet marked as solved
31 Replies
Updating with your suggestion...
Post not yet marked as solved
31 Replies
Can you share some code of how you're doing this defn?
Post not yet marked as solved
31 Replies
Thanks guys, I'm going to update the original post with your suggestions
Post not yet marked as solved
31 Replies
New finding, to add a background color for the main View just use the background modifier with a Color parameter. Since Color can have modifiers applied, apply a frame modifier with the values you need. In my case, a width of your screen width and a height of your screen heightSomething like this.background(Color.blue.frame(width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height))
Post not yet marked as solved
31 Replies
Updating for beta 3