iOS DatePicker control introduction In the Previous tutorial, we created UISegmentedControl example, now this project going to implement how to create an "iOS DatePicker" example using swift. UIDatePicker object using to select the specific date and time. If you are a documentation lover, you can read the UIDatePicker apple documentation here, a … [Continue reading...]
UIAlertController iOS 8 using Swift
UIAlertController was introduced with iOS 8 with the replacement of UIAlertView and UIActionSheet, yes these two methods are deprecated in iOS 8 UIAlertController object is used to display alerts and actions sheets to the user, Switching between an alert or action sheet is done by setting the preferred style when creating the controller. If you … [Continue reading...]
UISlider example (iOS Slider) using swift
An iOS UISlider object is used to select a single value from a continuous range of sliders, the slider is always displayed as horizontal bars and it has a thumb that is used to select the specific values in the slider. for more reference, you go through the apple documentation for UISlider class. In this tutorial, we are going to learn about how … [Continue reading...]
UITextField and UITextField Delegate in swift
UITextField object is one of the most commonly used UI Control in iOS, it displays editable text and sends an action message to a target object, it usually gets a small amount of text from the user and performs some immediate action like search operation, based on that text. In this tutorial, we are going to explain about UITextField and … [Continue reading...]
UISwitch Tutorial using swift in iOS
UISwitch Tutorial introduction The iOS switch control is like a real time electronic switch . UISwitch class is used to create and manage on/off state of the buttons that will work like a switch, this UISwitch on/off state is represented by boolean object, you can see the example of uiswitch in ios settings apps like Auto-Capitalization, and … [Continue reading...]
UISegmentedControl example using swift in ios
UISegmentedControl example introduction In the previous tutorial we have learned about working with UISwitch, in this "UISegmentedControl Example" tutorial going to explain about creating UISegmentedControl. The iOS segmented control is a UI component that is used to display, in a compact UI with serious of segment options for the user to choose … [Continue reading...]
iOS UIPickerView Example using Swift
UIPickerView Example Introduction In the Previous example we have learned about how to implement iOS DatePicker Example using swift. UIDatePicker is the Custom subclass of UIPickerView .In this tutorial we will see about how to implement UIPickerView Example using swift. UIPickerView object is used to show the one or more set of values … [Continue reading...]
UITableView tutorial using Swift in iOS
In the previous example we have learned about how to create uitextfield and uitextfielddelegate, Now this tutorial we will teach about how to create iOS uitableview tutorial in swift. uitableview is one of the most used ios control. It is used to list the set of items in a single column and it is a subclass of uiscrollview so by default the … [Continue reading...]
UIActivityindicatorview example in ios using swift
In this example we will how to use UIActivityIndicatorView Example in swift, mostly we have used an activity indicator to show some operation status like webview start and stop. Related: Webview Example in swift & MBProgressHUD Example UIActivityindicatorview is appears as spinning wheel either it's spinning or stopped state mostly an … [Continue reading...]
UIStepper Example in Swift
In my previous tutorial i have explained about how to create uitableview, in this tutorial we will learn about how to implement uistepper using swift in iOS. UIStepper control lets user adjust a value by increasing and decreasing it in small steps. It has two buttons with minus (-) and plus(+) symbol. The minus symbol button is used to decrement … [Continue reading...]
MBProgressHUD example in Swift
In the previous example we have learned how to create UIActivityIndicator Example in swift, this tutorial we will learn about how to create MBProgressHUD Example in swift. What is MBProgressHUD? MBProgressHUD is an custom control that is used to displays a translucent HUD with a progress indicator with some optional labels while work is being done … [Continue reading...]
UIWebView example using swift in ios
In the Previous ios webview example I have explained about creating ios webview using objective-c, but this tutorial we are going to learn about creating and implementing the uiwebview example using swift programming language. UIWebView object is used the load and display the web content into your application, safari browser is the primary example … [Continue reading...]
Recent Comments