diff options
-rw-r--r-- | Juick.xcodeproj/project.xcworkspace/contents.xcworkspacedata | 2 | ||||
-rw-r--r-- | Juick/ViewControllers/MessagesViewController.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Juick.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Juick.xcodeproj/project.xcworkspace/contents.xcworkspacedata index 919434a..7889985 100644 --- a/Juick.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/Juick.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ <Workspace version = "1.0"> <FileRef - location = "self:"> + location = "self:Juick.xcodeproj"> </FileRef> </Workspace> diff --git a/Juick/ViewControllers/MessagesViewController.m b/Juick/ViewControllers/MessagesViewController.m index 536815c..d25f438 100644 --- a/Juick/ViewControllers/MessagesViewController.m +++ b/Juick/ViewControllers/MessagesViewController.m @@ -25,7 +25,6 @@ NSString* const messageCellIdentifier = @"messageCell"; - (void)viewWillAppear:(BOOL)animated { self.navigationController.visibleViewController.title = self.title; - [self refreshData]; } -(void) refreshData { @@ -108,6 +107,7 @@ NSString* const messageCellIdentifier = @"messageCell"; } self.refreshControl = [UIRefreshControl new]; [self.refreshControl addTarget:self action:@selector(refreshData) forControlEvents:UIControlEventValueChanged]; + [self refreshData]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(newMessage:) name:NewMessageNotificationName object:nil]; } |