Following along with the Fabric/Twitter Kit Documentation to display User Timeline. However the code from the docs doesn't build.
This is the code in my Timeline View Controller in the View Did Load.
[[Twitter sharedInstance] logInGuestWithCompletion:^(TWTRGuestSession *guestSession, NSError *error) {
if (guestSession) {
TWTRAPIClient *APIClient = [[Twitter sharedInstance] APIClient];
TWTRUserTimelineDataSource *userTimelineDataSource = [[TWTRUserTimelineDataSource alloc] initWithScreenName:@"fabric" APIClient:APIClient];
self.dataSource = userTimelineDataSource; // <- build fail here
} else {
NSLog(@"error: %@", [error localizedDescription]);
}
}];
Xcode complains: "Property 'datasource' not found on object of type 'TimelineViewController ". Not sure why it's acting up since this is basically verbatim from the Docs example.
Any help is greatly appreciated!