Add event to device calendar in iOS using Swift

Introduction to Event-Kit framework: As per the post heading, create events in calendar using swift. This tutorial is revolving around EventKit framework which comes with iOS SDK. The EventKit framework provides classes for accessing and manipulating calendar events and reminders. Thus, we can add event to ios device calendar app using classes provided in EventKit […]

Add event to device calendar in iOS using Swift Read More »

Update UITableViewCell subviews tag

Update tags of UItableViewCell on deleting a row: In this post we will learn, how to update UITableViewCell subviews tag without reloading whole UITableview. This scenario comes up in case where we have to delete a row from UITableView. So in order to update tags on UITableViewCell subview’s we have only one option that is

Update UITableViewCell subviews tag Read More »

Get keyboard height in iOS swift – Programmatically

Programmatically get height of keyboard in swift Why we need to get keyboard height in iOS swift. Because with the introduction of different size of iPhone devices,  getting keyboard height is a pain for iOS developers. And with the addition of suggestion toolbar above keyboard in iOS, it’s necessary for iOS developers to get exact

Get keyboard height in iOS swift – Programmatically Read More »

Create dynamic height UITableViewCell

Create dynamic height UITableViewCell in Swift In this tutorial, we will learn how to create dynamic height UITableViewCell in Swift. To achieve dynamic height we will create multi line UILabel in UITableView using swift language.                                      We will use the new UITableViewAutomaticDimension property. UITableViewAutomaticDimension property is a handy thing for iOS developers as it sets

Create dynamic height UITableViewCell Read More »

NSNotification/NSNotificationCenter or NotificationCenter in Swift

Introduction to NSNotification/NSNotificationCenter/ NotificationCenter : Notification are good source when some one wants to trigger an action upon certain events happening during iOS app development. This thing can be achieved using NotificationCenter as it works like one to may relation using observers in comparison with delegates where we only have one to one relation between

NSNotification/NSNotificationCenter or NotificationCenter in Swift Read More »

Integrate search functionality in iOS app using Swift3

Introduction to how to integrate search functionality using Swift3 This tutorial is focused on how to integrate search functionality within our app using swift language. Sometimes we got requirement where a large list displayed to user and at the top there is search bar from where user can perform search to sort out the listing

Integrate search functionality in iOS app using Swift3 Read More »

UIPickerView example Swift – IOS Tutorial

UIPickerView in swift Introduction UIPickerView is common control used to allow user select from a list of drop-down option in IOS apps. In this tutorial we will learn how to create UIPickerView in Swift4 language.                    This UIPickerView tutorial is written in Swift 4 language  so you need xcode 9 and higher version to run

UIPickerView example Swift – IOS Tutorial Read More »