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

  • Home
  • SEARCH
  • 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 4620136
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:31:10+00:00 2026-05-22T02:31:10+00:00

My goal is to make a navigational Table View iOS app, with each cell

  • 0

My goal is to make a navigational Table View iOS app, with each cell representing a different PDF. All PDFs will be local.

I based my Table code off of a tutorial.

RootViewController.m

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

     NSString *selectedRoute = [listOfItems objectAtIndex:indexPath.row];

     DetailViewController *dvController = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:[NSBundle mainBundle]];
    dvController.selectedRoute = selectedRoute;
     [self.navigationController pushViewController:dvController animated:YES];
     [dvController release];
    dvController = nil;
}

I based my UIWebView code off of this video tutorial.

DetailViewController.m

- (void)viewDidLoad {
    NSString *endereco = [[NSBundle mainBundle] pathForResource:@"Clinton" ofType:@"pdf"];
    NSURL *url = [NSURL fileURLWithPath:endereco];
    NSURLRequest *urlEndereco = [NSURLRequest requestWithURL:url];
    [webView loadRequest:urlEndereco];
    [self.view addSubview:webView];
    webView.scalesPageToFit = YES;
    [super viewDidLoad];

    self.navigationItem.title = @"Selected Route";
}

I replaced the textbox from the Table tutorial with the UIWebView, but I’m just getting a blank view when I run it. What else do I have to add to allow my pdf to appear?

  • 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-22T02:31:11+00:00Added an answer on May 22, 2026 at 2:31 am

    your DetailViewController doesn’t have the code from viewDidLoad that you have written, it just says:

    - (void)viewDidLoad {
        [super viewDidLoad];
    
        //Display the selected route.
        lblText.text = selectedRoute;
    
        //Set the title of the navigation bar
        self.navigationItem.title = @"Selected Route";
    }
    

    I also fixed your outlets in detail view controller, view should point to the encapsulating view, not the webView made a new outlet called webView connected to the webView.
    enter image description here
    http://ObjectivelyBetter.com/tests/SeniorProject.zip

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

Sidebar

Related Questions

My goal is to make a Button that has two Content values. Imagine a
My goal is to make the title of every external link equal to its
my goal is to write a stored proc that can collect all field values
I created a tab bar application, and I make the first tab a table.
Goal: Make it possible to decorate class methods. When a class method gets decorated,
Goal: Make a decorator which can modify the scope that it is used in.
In below sample code, I use lambda function to make 3 threads doing different
Goal: Make a evaluation of the picture's format, width and height and then saving
My goal is make same thing as power button do. I try PARTIAL_WAKE_LOCK and
In my goal to make good code, I've validated my project in Visual Studio

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.