UiTableView as Navigation method in iOS - ios

please have a look at the attached image. I would like to build such a view to add some data to my app. Is the view shown in the image a UiTableView with custom cells? Is there a tutarial showing how to use an UiTableView for form elements (using siwft)?
Thanks

Suggest you look for a third party library that has already implemented what you want. If they're Objective-C you can still use them from Swift through the bridging header.
See this question for some ideas:
Existing iOS form framework

Related

Recreating Instagram/Pinterest profile - How can I recreate the instagram/pinterest profile in swift?

Currently I am trying to recreate something like the Instagram/Pinterest iOS profile page where you can swipe between sections that have different data and layout while having a header that doesn't scroll horizontally but vertically with each section. A very similar design to the current Instagram and Pinterest profile layouts.
I have made a layout that is similar which uses a custom segmented control in the header that uses a delegate to change between sections but this won't work because I have now integrated IGListKit which uses section controllers.
I have scoured the internet looking for examples on how to achieve this but haven't found anything useful. If anyone could provide resources I could look into or examples on how to achieve the desired layout, that would be helpful!
Check this library out:
https://github.com/subinspathilettu/SJSegmentedViewController
This will give you a ViewController with a header view controller with multiple segments; I have posted a screenshot below:

Swift create tableview with custom cell within UIAlertviewcontroller

I am trying to create Tableview with custom celldisplay within UIAlertviewcontroller using swift 4. Please provide some idea or sample link here.
Native UIAlertviewcontroller does not support embedding custom views. You can create custom alert controller or use one of many open source libraries and pods.

Draggable UIButtons like in iOS Camera app

I want to build a similar view as seen in the iOS Camera app, but I don't know which UI-Elements were used.
It can be found in the Instagram Story section as well.
Edit:
It should have the same behavior.
I tried to accomplish this with an UICollectionView. I'm adding UIButtons to the view but I don't know how to make the 'drag & stop' behavior. Maybe there is a delegate method or so.
A small explanation or some ideas would be helpful. I don't need code.
That's a custom control. You could create it using a horizontal scroll view containing multiple UILabel objects, each of which has an attached UITapGestureRecognizer.
You might be able to find a third party library that does what you want. Try Cocoa Controls.

Scrollview not working while using xib custom view in swift?

Hi I am new for developing ios application.
I have used cocopods framework for doing the page segmentation control.
I have used following mentioned Cocopods PageMenu framework.
In that Its working fine able to use that pageMenu. In that we need to create the xib customview for doing page menu. so In that framework mentioned with tableview so its able to scroll the page. so I have changed instead of using tableview I have used some form details like ( register page ). so I need to add more textFields for that page.In that scroll not happening. please anyone help for fixing the problem.

adding items to tableView in IOS

Can someone go help me figure out how to hookup the table view so that i can add items to the table view? I'm trying to make a news screen for this app and am having trouble adding data to it. I have the xib file all set up i just don't know how to hook it all up in xcode 4.
It looked like you have not use UITableView class before. I would suggest get one of the samples from Apple. Here is the link.

Resources