How to Create this type of view in IOS? (See in Image)

134 views Asked by At

enter image description here

enter image description here

enter image description here

Any Library of IOS then suggest me.. thank u

2

There are 2 answers

1
KavyaKavita On BEST ANSWER

No need to use any third party library for this :-

  1. 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)

  2. 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

  3. Done Button

    Use table footer to show done button

6
iamVishal16 On

Hiii,

enter image description here

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.