UIDatePicker issue iOS 14 Swift 5
In iOS 14, Apple introduced a new property of UIDatePicker which is datePickerStyle, because of this UIDatePicker creating issue with UITextField inputView. From iOS 14 and above you need to… Read more »
Swift Programming Tutorials
In iOS 14, Apple introduced a new property of UIDatePicker which is datePickerStyle, because of this UIDatePicker creating issue with UITextField inputView. From iOS 14 and above you need to… Read more »
Almost every project there is a need to integrate a drop-down list so here we are going to demonstrate a very good cocoapods library. It is very easy to integrate… Read more »
iOS provides the document directory, temp directory, and cache directory folder to every application so that we can save our files inside these folders. You can save any kind of… Read more »
If your application doesn’t have the support of the dark mode then you should consider turning off the dark mode for your app. If you don’t do this then your… Read more »
Using the custom URL schemes we can launch the application from anywhere. Custom URL schemes are also being used to check if the application is installed or not. Using custom… Read more »
The Grand Central Dispatch (GCD) is a is a low-level API provided by Apple. GCD is used for managing concurrent operations. GCD has lots of benefits like – It improves… Read more »
In order to access the view controller from any view or subview, we are going use UIResponder Extension so you only need to write just one line of code. extension… Read more »
We are going to create a UIView Extension to add shimmer effect of UIView and the class derived from it like UILabel, UIImageView, UIButton etc. Let’s add below UIView Extension… Read more »
Using CAShapeLayer and UIBezierPath we can easily add shadow and corner radius to UIView and the class derived from it like UIButton, UIImageView, UILabel etc. We will add UIView Extension… Read more »
If you looking to make round only specific corners of the UIView then you are at the right place. Create a new swift file and add below UIView Extension in… Read more »