Local Notifications are mainly used in iOS apps for notifying user when new data or information available for your app.This will notify, even if the app is background.
Earlier we were using UILocalNotification class for sending local notification,...
Post Top Ad
31 Aug 2017
29 Aug 2017
Add UIDatePicker as Input View to UITextField Swift - iOS
In this article we are going to add UIDatePicker as Keyboard to UITextField and also adding UIToolBar above UIDatePicker.
This Article Covers All Related questions :
UITextField UIDatePicker inputview Example.uidatepicker inputview uitextfield.uidatepicker...
28 Aug 2017
Selecting Date and Time with UIDatePicker - iOS, Swift
UIDatePicker :
Apple made a ready-made user interface for picking data and time. We can use in our apps using UIDatePicker class.
The date picker is in fact a prepopulated picker view. Example of the date picker control is in the Calendar app, Clock...
26 Aug 2017
Adding Blur Effects to Views Using UIVisualEffectView - iOS, Swift
Adding blur effects to various UI components on your application is easy.
This Article Covers All Related questions :
Adding blur effect to background in swift.
Creating a blurring overlay view.
UIVisualEffectView Tutorial: Getting Started.
...
25 Aug 2017
Dynamic type(Text and Image) & Image scaling Uisng Preserve Vector Data iOS11
In this article we will discuss several common tips and tricks for supporting Dynamic Type.
Dynamic type means increasing text or images sizes dynamically based on device settings.
Setting Up :
First create new project with single view and...
23 Aug 2017
Dictionaries[iOS] in swift 4. How to Use Dictionaries in Swift 4.0
Dictionary is one of the important collection type. We use dictionaries in most of apps for storing and organizing data.
Dictionary is an unordered collection of key-value pairs. Its also called as hashes or associated arrays in other languages.
Syntax...