Skip to main content

5 posts tagged with "UI Design"

iOS UI design tutorials

View All Tags

How to color UIImage objects programmatically in Swift

· 2 min read
Full Stack Developer
Last updated on March 19, 2021

UIImage is the Swift approach to modeling images. In order to display an image on the screen, you’re most likely going to use UIImageView, which takes a UIImage object and presents it in the view hierarchy. To color UIImage objects there’s some extra work required. Coloring images can be very helpful when dealing with app icons, tab bar items, navigation items, etc.

Introduction to SwiftUI And The Future of iOS Development

· 11 min read
Full Stack Developer
Last updated on August 8, 2019

swift ui intro

SwiftUI is a newly released framework to help iOS developers build user interfaces across all Apple platforms with the power of Swift. SwiftUI has been launched at WWDC 2019 and has been increasing in popularity exponentially ever since. SwiftUI addresses the major pain points that iOS engineers were facing with building interfaces, and for these reasons, SwiftUI is the future of front-end development on iOS. We are making a quick introduction to SwiftUI to highlight its simplistic yet powerful paradigm.

Auto Layout: Should you use Interface Builder for building your iOS app?

· 6 min read
Full Stack Developer
Last updated on April 11, 2017

By introducing Auto Layout, Apple made a lot of progress in their attempt to help iOS developers in building their iOS app's user interfaces. The Interface Builder got a lot better, the Auto Layout was integrated into it, and more recently UIStackViews are gaining a lot of traction and popularity. Having many different approaches of laying out views with Auto Layout, makes it necessary to decide upfront, on a consistent pattern to be followed when building your iOS app.