We hope you already finished previous 2 tutorials for UITableView : UITableView in Swift and UITableView With Customize UITableViewCell in Swift. Now Before proceeding, I would like to share little knowledge on What UITableViewDelegate. There are 2 types of delegate methods : Required and Optional. For Implementing UITableVIew We already Added 2 Required methods : […]
Customize TableView Cells for UITableView In Swift
In this tutorial, I’m gonna teach how you can create a table view with custom cell. I recommend you to first learn Simple UITableView In Swift, if you already have, you are good to go. We will continue with the same example and we will make it far more BEAUTIFUL. Adding different image for each and every row. […]
How To Create UITableView In Swift
UITableView is one of the most common iOS controller developer uses. UITableView is used for letting user select the Items from the list, Navigating to different ViewControllers as per user selection, Displaying the List of Items etc. This control is very commonly used, iOS itself uses it in its Setting app. I have much things to write […]
Integarting iOS Touch ID (Obj C)
In September 2013, apple unveiled the most innovative feature of iPhone 5s, the thin metal band on home button, a fingerprint scanner called Touch ID. In this tutorial we have used Xcode 6, you will also need a device with touch ID for testing. What id Touch ID Exactly? Touch ID is fingerprint identification sensor […]
Programmatically creating UIStepper and UISegmentedControl Using Swift
UIStepper UIStepper is the iOS UI component that provide the easiest way to implement the consecutive numeric value change. UIStepper has +/- signs for increment/decrement function. In this tutorial we will print the value in console depending on user ‘s interaction with UIStepper. 123456var customStepper = UIStepper (frame:CGRectMake(110, 250, 0, 0)) customStepper.wraps = true customStepper.autorepeat […]
Programmatically creating UIView, UISlider, UISwitch Using Swift
UIView In iOS, UIView class provides rectangular area in the view, this view can render user defined content on the iPhone screen. Here is the very basic example for creating UIView programmatically. 12345var DynamicView=UIView(frame: CGRectMake(100, 200, 100, 100)) DynamicView.backgroundColor=UIColor.greenColor() DynamicView.layer.cornerRadius=25 DynamicView.layer.borderWidth=2 self.view.addSubview(DynamicView) And your screen will have this : UISlider […]