123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- // PublicTimelineViewController.m
- //
- // Copyright (c) 2012 Mattt Thompson (http://mattt.me/)
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #import "PublicTimelineViewController.h"
- #import "Tweet.h"
- #import "TweetTableViewCell.h"
- @interface PublicTimelineViewController ()
- - (void)reload:(id)sender;
- @end
- @implementation PublicTimelineViewController {
- @private
- NSArray *_tweets;
-
- __strong UIActivityIndicatorView *_activityIndicatorView;
- }
- - (void)reload:(id)sender {
- [_activityIndicatorView startAnimating];
- self.navigationItem.rightBarButtonItem.enabled = NO;
-
- [Tweet publicTimelineTweetsWithBlock:^(NSArray *tweets) {
- if (tweets) {
- _tweets = tweets;
- [self.tableView reloadData];
- }
-
- [_activityIndicatorView stopAnimating];
- self.navigationItem.rightBarButtonItem.enabled = YES;
- }];
- }
- #pragma mark - UIViewController
- - (void)loadView {
- [super loadView];
-
- _activityIndicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
- _activityIndicatorView.hidesWhenStopped = YES;
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- self.title = NSLocalizedString(@"AFNetworking", nil);
-
- self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_activityIndicatorView];
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(reload:)];
-
- self.tableView.rowHeight = 70.0f;
-
- [self reload:nil];
- }
- - (void)viewDidUnload {
- _activityIndicatorView = nil;
-
- [super viewDidUnload];
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- }
- - (void)viewDidAppear:(BOOL)animated {
- [super viewDidAppear:animated];
- }
- - (void)viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
- }
- - (void)viewDidDisappear:(BOOL)animated {
- [super viewDidDisappear:animated];
- }
- #pragma mark - UITableViewDataSource
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return [_tweets count];
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *CellIdentifier = @"Cell";
-
- TweetTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (!cell) {
- cell = [[TweetTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
- }
-
- cell.tweet = [_tweets objectAtIndex:indexPath.row];
-
- return cell;
- }
- #pragma mark - UITableViewDelegate
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return [TweetTableViewCell heightForCellWithTweet:[_tweets objectAtIndex:indexPath.row]];
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- [tableView deselectRowAtIndexPath:indexPath animated:YES];
- }
- @end
|