Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3432006
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:23:46+00:00 2026-05-18T07:23:46+00:00

What is the view used to create the Template Chooser view in the iWork

  • 0

What is the view used to create the Template Chooser view in the iWork apps on iPad?
alt text

How can I create a view like that on iPad, and what would be a best way to implement it on iPhone considering screen size constraints.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T07:23:46+00:00Added an answer on May 18, 2026 at 7:23 am

    There isn’t any built-in view that will provide that functionality. Which means there will be quite some work to duplicate that functionality.

    What you can try is:

    1) Create a new UIViewController with a nib.

    2) Add the top bar and an UIScrollView with opaque = NO and alpha = 0.

    3) If you have a fixed number of “templates” they can be added directly in the nib. You should be able to use UIImageView

    4) Otherwise you can add the “templates” dynamically in e.g. viewDidLoad. The only part which can be a little bit tricky is calculating the frame. The following pseudo code should get you started.

    int MARGIN = 20;
    float templateWidth = self.scrollView.bounds.size.width / 3;
    float templateHeight = 300;
    
    for (int i = 0; i < [templates count]; i++) {
      int row = i / 3;
      int col = i % 3;
    
      float x = MARGIN + col * templateWidth;
      float y = MARGIN + row * templateHeight;
      CGRect templateFrame = CGRectMake(x, y, width - 2 * MARGIN, height - 2 * MARGIN);
    
      // initialize `UIImageView` or similar
    
      templateView.frame = templateFrame;
      [self.scrollView addSubView:templateView];
    }
    
    self.scrollView.contentSize = CGSizeMake(self.scrollView.bounds.width, /* max bottom of templates */);
    } 
    

    After you have got the layout perfected the rest should be quite straightforward since you only need to respond to taps on your template images. Take a look at UITapGestureRecognizer for one way of doing that.

    Regarding the iPhone. I would probably do it in the way you select a document in the iWorks apps. Only one template is displayed on screen at the time and you swipe left/right to choose. But it all depends on the context. Perhaps a table view is better suited for the iPhone.

    Good luck!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have used the template from ipad to create a splitView app but the
I would like to be able to create a DataTemplate to be used when
I used the Interface Builder to create a table view, to which I added
I used the storyboard to create my application, where the initial View is an
How would I do this? The Outline View is being used with Core Data.
I have used a list view that uses a grid view in WPF. I
How can view the execution line used by netbean v6.8 to execute my java
I have a gsp template, where the data for create view is passed through
I am trying to create a Window-based Universal app for iPhone/iPad. I used the
So I used the template of a UITabBarController application to create an app and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.