Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Web view not working

So I am new to Objective-C

I have a table view populated with links that the user has added. When the user clicks on one of the cells in the table view, they are guided to a second view controller with a web view that displays the website of the link. However, when I run the app the web view appears blank. What am I doing wrong?

Table view. m

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([[segue identifier] isEqualToString:@"showWebsite"]) {

        UITableViewCell *cell = (UITableViewCell*)sender;
        NSURL *url = [NSURL URLWithString:cell.textLabel.text];
        NSString *string = url.absoluteString;
        SecondViewController *vc = [segue destinationViewController];
        vc.url = string;

Second View controller . m

- (void)viewDidLoad {
    [super viewDidLoad];
    NSURL *URL = [NSURL URLWithString:[self.url
                                       stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];

    NSURLRequest *request = [NSURLRequest requestWithURL:URL];
    [self.webView loadRequest:request];

1 Answer

Cindy Lea
PLUS
Cindy Lea
Courses Plus Student 6,497 Points

Did you check the console for errors? Sometimes when its blank, theres an error somewhere.

Yes, there is none. Cindy Lea