TabbedBanner/TabbedBanner/Tab1ViewController.m

/*
Copyright (C) 2015 Apple Inc. All Rights Reserved.
See LICENSE.txt for this sample’s licensing information
 
Abstract:
View controller for tab 1.
*/
 
#import "Tab1ViewController.h"
 
@interface Tab1ViewController ()
 
@end
 
@implementation Tab1ViewController
 
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    NSDictionary *ipsums = [NSDictionary dictionaryWithContentsOfURL:[[NSBundle mainBundle] URLForResource:@"ipsums" withExtension:@"plist"]];
    self.text = ipsums[@"Original"];
}
 
@end