iOS Articles

Page 19 of 19

How to detect swipe vertically on a ScrollView using Swift?

Samual Sam
Samual Sam
Updated on 30-Jul-2019 899 Views

To detect swipe in scrollView we will need to make use of some tricks as scroll view does not natively give the directions of scroll made on it. We’ll see this with help of an example.Create an empty project, add scroll view to the view as per your requirement.Give them constraint as required in the application.From the object library, drag and drop a swipe gesture recognizer right above the Scroll View.Select the gesture recognizer, go to its attribute inspector and from there, select the swipe option and set the value as “up”.When you do this, now your gesture recognizer can ...

Read More

How to add a Submit button after the end of the tableview using Swift?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 2K+ Views

To add a submit button at the end of a table view, we can make use of table view footers. Let’s see this with help of an example where we’ll add a footer view to our table, and inside the table, we will add code for adding button at the bottom of the table view.Create a new project first, then inside the view controller add the following code which will initialize the table, add a section and a few rows to the table.func initTableView() {    let tableView = UITableView()    tableView.frame = self.view.frame    tableView.dataSource = self    tableView.delegate ...

Read More
Showing 181–182 of 182 articles
« Prev 1 15 16 17 18 19 Next »
Advertisements