Any Library of IOS then suggest me.. thank u
How to Create this type of view in IOS? (See in Image)
158 Views Asked by Mr. Bond At
2
There are 2 best solutions below
6

Hiii,
Use StoryBoard place a ViewController and embed in navigation controller then provide a storyboard id to navigation controller and then get that same viewController on next button clicked.
UINavigationController *navVC = [self.storyboard instantiateViewControllerWithIdentifier:@"yourViewController"];
YourViewController *yourVC = navVC.topViewController;
[self.navigationController pushViewController:yourVC animated:true];
Now you can get same ViewController every time. Provide some instance variable which loads specific data for presentation.
OR
Also, you can directly access a view controller if it's already embedded in Navigation Controller like
YourViewController *yourVC = [self.storyboard instantiateViewControllerWithIdentifier:@"yourViewController"];
open identity inspector and provide storyboard id directly and push this viewController.
No need to use any third party library for this :-
Navigation bar
1.1 Use that arrow for back button by setting leftbarbuttonitem
1.2 For Progress Bar and progress label you can design separate view and can add it as title view (self.navigationController.navigationItem.titleView)
For question and answer, you can use table view
2.1 Question:- Use table header or section header
2.2 Answer:- Use Table view cell with check box or radio button Use single selection logic for radio button and multi selection for check box
Done Button
Use table footer to show done button