SwiftUI is a user interface toolkit that allows us to design apps in a declarative way. Storyboards and XIB are severed well but they aren’t liked by everyone. They make it hard to move between code and visual layouts, and they rely on a system of connections using actions and outlets. SwiftUI removes all the disadvantages in an effective way
- New Declarative implementation that defines how the layout works
- Outlets and Actions bindings are checked at compile time
- Updating the UI preview automatically generates and updates a new code.
Requirements
Requires MacOS Catalina beta and XCode 11.
Right now it is only available on Beta stream. It will be available for the general public in mid-September.
Get Started with SwiftUI
Some tips to start SwiftUI
-
In XCode 11, create a new project with the same usual previous procedure but make sure you check the SwiftUI checkbox.
-
In the project navigator, select ContentView.swift. SwiftUI is defined by two protocol one is View protocol and the second one declares a preview of that view. You should change the body of the content view depending on
-
In canvas, you can click “Resume” to get a preview. If the canvas isn’t available, click Editor > Editor and Canvas to get it.
-
Press Command and click on the Text component inside ContentView to get structured edit popover then select inspect for editing the text component. Use inspector for changing the text, adding font type, adding text color, etc
Conclusion
The only disadvantage with SwiftUI is that you cannot use Objective-C. Other than that the dramatic simplification of UI creation with SwiftUI does a number of things for Apple. It makes coding much simpler and this is going to make the developer’s life much easier.
Subscribe to our newsletter
Get the latest updates from our team delivered directly to your inbox.
Related Posts
3 days with iOS - the Android user's perspective
The title is very evident, but it's always difficult to convince an Android fanatic to use iOS on an iPhone. Adding more fuel to the Android vs iOS debate, we got our Mobile Application Developer to test iOS and see how it fares in comparison with Android - and here are his thoughts.
Android O
The new and upgraded Android, Version 8.0 was launched on Monday as the Solar Eclipse was under way and we played around a bit with the new version - and this is what we found.
How we Automate Android App Distribution with Fastlane
Last time we saw how to deploy iOS apps with FastLane, now let us see how to use FastLane to push Android apps to Google Play Store.