Posts

Post not yet marked as solved
2 Replies
is this your actual app bundle identifier "com.example.Test" ? if yes you cannot use this. you need to create one without the "example" word
Post not yet marked as solved
1 Replies
what are you using to run your php ?
Post not yet marked as solved
1 Replies
Hi I believe you can as the appstore account is tie to your apple ID. Just make sure you sign out and reset your iphone. One you get a new apple device you can sign in back to you apple id.
Post not yet marked as solved
1 Replies
Not showing SwiftUI screen using this way, anyone got a solution ?Storyboard image here,https://drive.google.com/open?id=10cOWRl98g35Gc-FPUmtkbMRXE2xpDR5v// ViewController.swift// UITabBarControllerwithSwiftUIimport UIKitimport SwiftUIclass ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } @IBSegueAction func showNewScreen(_ coder: NSCoder) -> UIViewController? { //UIHostingController(coder: coder, rootView: SwiftUIView()) return UIHostingController(coder: coder, rootView: SwiftUIView()) }}// SwiftUIView.swiftimport SwiftUIstruct SwiftUIView: View { var body: some View { Text("Hello World!") }}struct SwiftUIView_Previews: PreviewProvider { static var previews: some View { SwiftUIView() }}
Post marked as solved
3 Replies
Thanks it works now i can compile.