From dd1a9f6a1bfbcdf9a529d722cf112acdc4fd04f7 Mon Sep 17 00:00:00 2001 From: Patrick Santana Date: Fri, 25 Oct 2013 16:36:24 -0200 Subject: [PATCH] #332: removed create account from mobile --- Photo/AuthenticationService.h | 1 - Photo/AuthenticationService.m | 6 - Photo/LoginCreateAccountViewController.h | 39 ---- Photo/LoginCreateAccountViewController.m | 246 -------------------- Photo/LoginCreateAccountViewController.xib | 96 -------- Photo/LoginCreateAccountViewController5.xib | 97 -------- Photo/LoginViewController.h | 2 - Photo/LoginViewController.m | 6 - Photo/LoginViewController.xib | 18 +- Photo/LoginViewController5.xib | 20 +- Photo/LoginViewControlleriPad.xib | 20 +- Photo/PrivateAuthenticationService.h | 2 - Trovebox.xcodeproj/project.pbxproj | 14 -- 13 files changed, 5 insertions(+), 562 deletions(-) delete mode 100644 Photo/LoginCreateAccountViewController.h delete mode 100644 Photo/LoginCreateAccountViewController.m delete mode 100644 Photo/LoginCreateAccountViewController.xib delete mode 100644 Photo/LoginCreateAccountViewController5.xib diff --git a/Photo/AuthenticationService.h b/Photo/AuthenticationService.h index ac9837e..9780dc8 100644 --- a/Photo/AuthenticationService.h +++ b/Photo/AuthenticationService.h @@ -44,7 +44,6 @@ - (void) startOAuthProcedure:(NSURL*) url; // for login -+ (Account *) createNewAccountWithUser:(NSString*) user email:(NSString*) email password:(NSString*) pwd; // returns a list of Account + (NSArray *) signIn:(NSString*) email password:(NSString*) pwd; + (NSString *) recoverPassword:(NSString *) email; diff --git a/Photo/AuthenticationService.m b/Photo/AuthenticationService.m index de2696e..108cfbf 100644 --- a/Photo/AuthenticationService.m +++ b/Photo/AuthenticationService.m @@ -294,12 +294,6 @@ [alert showAlertOnTop]; } -+ (Account *) createNewAccountWithUser:(NSString*) user email:(NSString*) email password:(NSString*) pwd -{ - return [PrivateAuthenticationService createNewAccountWithUser:user email:email password:pwd]; - -} - + (NSArray *) signIn:(NSString*) email password:(NSString*) pwd { return [PrivateAuthenticationService signIn:email password:pwd]; diff --git a/Photo/LoginCreateAccountViewController.h b/Photo/LoginCreateAccountViewController.h deleted file mode 100644 index e1a3ebb..0000000 --- a/Photo/LoginCreateAccountViewController.h +++ /dev/null @@ -1,39 +0,0 @@ -// -// LoginCreateAccountViewController.h -// Trovebox -// -// Created by Patrick Santana on 02/05/12. -// Copyright 2013 Trovebox -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#import "AuthenticationService.h" -#import "Account.h" -#import "MBProgressHUD.h" - -@interface LoginCreateAccountViewController : GAITrackedViewController - -@property (nonatomic, weak) IBOutlet UITextField *username; -@property (nonatomic, weak) IBOutlet UITextField *email; -@property (nonatomic, weak) IBOutlet UITextField *password; -@property (nonatomic, weak) IBOutlet UIButton *buttonCreateAccount; -@property (nonatomic, weak) IBOutlet UIImageView *backgroundUsername; -@property (nonatomic, weak) IBOutlet UIImageView *backgroundEmail; -@property (nonatomic, weak) IBOutlet UIImageView *backgroundPassword; - -// label -@property (nonatomic, weak) IBOutlet UILabel *createAccountLabel; - -- (IBAction)createAccount:(id)sender; -@end diff --git a/Photo/LoginCreateAccountViewController.m b/Photo/LoginCreateAccountViewController.m deleted file mode 100644 index 838dc75..0000000 --- a/Photo/LoginCreateAccountViewController.m +++ /dev/null @@ -1,246 +0,0 @@ -// -// LoginCreateAccountViewController.m -// Trovebox -// -// Created by Patrick Santana on 02/05/12. -// Copyright 2013 Trovebox -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#import "LoginCreateAccountViewController.h" - -@interface LoginCreateAccountViewController () - --(void) createAccountUsername:(NSString*) username withEmail:(NSString *) email andPassword:(NSString*) password; - -// for creation account, there are too many fields, we need to put the view up. This is a control for that. -@property (nonatomic) BOOL isViewUp; -@end - -@implementation LoginCreateAccountViewController - -@synthesize username=_username; -@synthesize email=_email; -@synthesize password=_passoword; - -@synthesize buttonCreateAccount; -@synthesize backgroundUsername; -@synthesize backgroundEmail; -@synthesize backgroundPassword; -@synthesize createAccountLabel; - -@synthesize isViewUp = _isViewUp; - -- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil -{ - self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; - if (self) { - // Custom initialization - self.title=@"Create Account"; - self.isViewUp = NO; - } - return self; -} - -- (void)viewDidLoad -{ - [super viewDidLoad]; - [self.navigationController setNavigationBarHidden:NO animated:YES]; - self.screenName = @"Create Account Screen"; - - self.createAccountLabel.hidden = NO; -} - -- (void) viewWillAppear:(BOOL)animated -{ - // if ipad, lets centralize fields - if([DisplayUtilities isIPad]){ - self.email.center=self.backgroundEmail.center; - self.password.center=self.backgroundPassword.center; - self.username.center=self.backgroundUsername.center; - } -} - -- (BOOL) shouldAutorotate -{ - return YES; -} - -- (NSUInteger) supportedInterfaceOrientations -{ - return UIInterfaceOrientationMaskPortrait; -} - -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation -{ - return (interfaceOrientation == UIInterfaceOrientationPortrait); -} - -- (IBAction)createAccount:(id)sender -{ - - // in the case of iphone 5 or ipad we don't need to move the screen - if (![DisplayUtilities isIPad] && ![DisplayUtilities is4InchRetina]){ - if ( self.isViewUp == YES){ - [UIView animateWithDuration:0.1 delay:0 options:UIViewAnimationCurveEaseOut animations:^{ - [self moveFieldsUpOrDown:+1]; - }completion:^(BOOL finished){ - self.isViewUp = NO; - }]; - }} - - // no keyboard - [self.username resignFirstResponder]; - [self.email resignFirstResponder]; - [self.password resignFirstResponder]; - - if ( [SharedAppDelegate internetActive] == NO ){ - // problem with internet, show message to user - PhotoAlertView *alert = [[PhotoAlertView alloc] initWithMessage:NSLocalizedString(@"Please check your internet connection",@"")]; - [alert showAlert]; - }else{ - - // user is creating account using email - // check for email, username and password - if (self.username.text == nil || [[self.username.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] length ] == 0){ - //show message - PhotoAlertView *alert = [[PhotoAlertView alloc] initWithMessage:NSLocalizedString(@"Please, set your username.",@"Creation account where user needs to set the username")]; - [alert showAlert]; - return; - } - - if (self.email.text == nil || [[self.email.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] length ] == 0){ - //show message - PhotoAlertView *alert = [[PhotoAlertView alloc] initWithMessage:NSLocalizedString(@"Please, set your email.",@"Creation account where user needs to set the email")]; - [alert showAlert]; - return; - } - - if (self.password.text == nil || [[self.password.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] length ] == 0){ - //show message - PhotoAlertView *alert = [[PhotoAlertView alloc] initWithMessage:NSLocalizedString(@"Please, set your password",@"")]; - [alert showAlert]; - return; - } - - // create account - [self createAccountUsername:self.username.text withEmail:self.email.text andPassword:self.password.text]; - } -} - -- (void)textFieldDidBeginEditing:(UITextField *)textField -{ - if (![DisplayUtilities isIPad] && ![DisplayUtilities is4InchRetina]){ - - if (self.isViewUp == NO){ - self.isViewUp = YES; - [UIView animateWithDuration:0.1 delay:0 options:UIViewAnimationCurveEaseOut animations:^{ - [self moveFieldsUpOrDown:-1]; - }completion:^(BOOL finished){ - }]; - }} -} - -// direction should be -1 for go up or +1 to go down. --(void) moveFieldsUpOrDown:(int) direction -{ - - if (direction != -1 && direction != +1){ - // we don't allow others values - return; - } - - // move up or down everything because we don't have space enough - [self.createAccountLabel setCenter:CGPointMake([self.createAccountLabel center].x, [self.createAccountLabel center].y + (35 * direction))]; - [self.username setCenter:CGPointMake([self.username center].x, [self.username center].y + (35 * direction))]; - [self.email setCenter:CGPointMake([self.email center].x, [self.email center].y + (35 * direction))]; - [self.password setCenter:CGPointMake([self.password center].x, [self.password center].y + (35 * direction))]; - [self.buttonCreateAccount setCenter:CGPointMake([self.buttonCreateAccount center].x, [self.buttonCreateAccount center].y + (35 * direction))]; - [self.backgroundUsername setCenter:CGPointMake([self.backgroundUsername center].x, [self.backgroundUsername center].y + (35 * direction))]; - [self.backgroundEmail setCenter:CGPointMake([self.backgroundEmail center].x, [self.backgroundEmail center].y + (35 * direction))]; - [self.backgroundPassword setCenter:CGPointMake([self.backgroundPassword center].x, [self.backgroundPassword center].y + (35 * direction))]; - -} - - -// Action if user clicks in DONE in the keyboard -- (BOOL)textFieldShouldReturn:(UITextField *)textField { - - if (textField == self.username){ - [self.email becomeFirstResponder]; - return NO; - }if (textField == self.email){ - [self.password becomeFirstResponder]; - return NO; - }else{ - [textField resignFirstResponder]; - [self createAccount:nil]; - return YES; - } -} - -- (void)viewDidUnload -{ - - [self setUsername:nil]; - [self setEmail:nil]; - [self setPassword:nil]; - [self setButtonCreateAccount:nil]; - [self setBackgroundUsername:nil]; - [self setBackgroundEmail:nil]; - [self setBackgroundPassword:nil]; - [self setCreateAccountLabel:nil]; - - [super viewDidUnload]; -} - - -//// -//// Private methods -//// --(void) createAccountUsername:(NSString*) username withEmail:(NSString *) email andPassword:(NSString*) password -{ - // display - MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.navigationController.view animated:YES]; - hud.labelText = NSLocalizedString(@"Creating Account",@""); - - dispatch_queue_t queue = dispatch_queue_create("create_account_with_user_pwd", NULL); - dispatch_async(queue, ^{ - - @try{ - // gcd to sign in - Account *account = [AuthenticationService createNewAccountWithUser:username email:email password:password]; - - // save the details of account and remove the progress - dispatch_async(dispatch_get_main_queue(), ^{ - - // save data to the user information - [account saveToStandardUserDefaults]; - - // send notification to the system that it can shows the screen: - [[NSNotificationCenter defaultCenter] postNotificationName:kNotificationLoginAuthorize object:nil ]; - [[NSNotificationCenter defaultCenter] postNotificationName:kNotificationNeededsUpdate object:nil]; - [MBProgressHUD hideHUDForView:self.navigationController.view animated:YES]; - }); - }@catch (NSException* e) { - dispatch_async(dispatch_get_main_queue(), ^{ - [MBProgressHUD hideHUDForView:self.navigationController.view animated:YES]; - PhotoAlertView *alert = [[PhotoAlertView alloc] initWithMessage:[e description]]; - [alert showAlert]; - }); - - } - }); -} -@end diff --git a/Photo/LoginCreateAccountViewController.xib b/Photo/LoginCreateAccountViewController.xib deleted file mode 100644 index 6de25ea..0000000 --- a/Photo/LoginCreateAccountViewController.xib +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Photo/LoginCreateAccountViewController5.xib b/Photo/LoginCreateAccountViewController5.xib deleted file mode 100644 index 4560d4d..0000000 --- a/Photo/LoginCreateAccountViewController5.xib +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Photo/LoginViewController.h b/Photo/LoginViewController.h index 4db14fe..f8a03f1 100644 --- a/Photo/LoginViewController.h +++ b/Photo/LoginViewController.h @@ -19,14 +19,12 @@ // #import "LoginConnectViewController.h" -#import "LoginCreateAccountViewController.h" #import "AuthenticationService.h" #import "Account.h" #import "MBProgressHUD.h" @interface LoginViewController : GAITrackedViewController -- (IBAction)signUpWithEmail:(id)sender; - (IBAction)signInWithEmail:(id)sender; @end diff --git a/Photo/LoginViewController.m b/Photo/LoginViewController.m index a4674aa..9583d75 100644 --- a/Photo/LoginViewController.m +++ b/Photo/LoginViewController.m @@ -77,12 +77,6 @@ return (interfaceOrientation == UIInterfaceOrientationPortrait); } -- (IBAction)signUpWithEmail:(id)sender { - LoginCreateAccountViewController *controller = [[LoginCreateAccountViewController alloc] initWithNibName:[DisplayUtilities getCorrectNibName:@"LoginCreateAccountViewController"] bundle:nil]; - self.navigationController.navigationBar.tintColor = [UIColor whiteColor]; - [self.navigationController pushViewController:controller animated:YES]; -} - - (IBAction)signInWithEmail:(id)sender { LoginConnectViewController *controller = [[LoginConnectViewController alloc] initWithNibName:[DisplayUtilities getCorrectNibName:@"LoginConnectViewController"] bundle:nil]; self.navigationController.navigationBar.tintColor = [UIColor whiteColor]; diff --git a/Photo/LoginViewController.xib b/Photo/LoginViewController.xib index e3e3dc0..7f4a1dd 100644 --- a/Photo/LoginViewController.xib +++ b/Photo/LoginViewController.xib @@ -1,5 +1,5 @@ - + @@ -15,21 +15,6 @@ - - @@ -56,7 +41,6 @@ - \ No newline at end of file diff --git a/Photo/PrivateAuthenticationService.h b/Photo/PrivateAuthenticationService.h index 22d52af..a8bfe66 100644 --- a/Photo/PrivateAuthenticationService.h +++ b/Photo/PrivateAuthenticationService.h @@ -24,8 +24,6 @@ @interface PrivateAuthenticationService : NSObject -+ (Account *) createNewAccountWithUser:(NSString*) user email:(NSString*) email password:(NSString*) pwd; -+ (BOOL) checkUserFacebookEmail:(NSString*) email; + (NSArray *) signIn:(NSString*) email password:(NSString*) pwd; + (NSString *) recoverPassword:(NSString *) email; + (void) sendToServerReceipt:(NSData *) receipt forUser:(NSString *) email; diff --git a/Trovebox.xcodeproj/project.pbxproj b/Trovebox.xcodeproj/project.pbxproj index 74abf39..a807484 100644 --- a/Trovebox.xcodeproj/project.pbxproj +++ b/Trovebox.xcodeproj/project.pbxproj @@ -98,8 +98,6 @@ CD1528481628DB8500EA08FF /* Account.m in Sources */ = {isa = PBXBuildFile; fileRef = CD15283C1628DB8500EA08FF /* Account.m */; }; CD15284A1628DB8500EA08FF /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1528401628DB8500EA08FF /* LoginViewController.m */; }; CD15284B1628DB8500EA08FF /* LoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD1528411628DB8500EA08FF /* LoginViewController.xib */; }; - CD15284C1628DB8500EA08FF /* LoginCreateAccountViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1528431628DB8500EA08FF /* LoginCreateAccountViewController.m */; }; - CD15284D1628DB8500EA08FF /* LoginCreateAccountViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD1528441628DB8500EA08FF /* LoginCreateAccountViewController.xib */; }; CD15284E1628DB8500EA08FF /* LoginConnectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1528461628DB8500EA08FF /* LoginConnectViewController.m */; }; CD15284F1628DB8500EA08FF /* LoginConnectViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD1528471628DB8500EA08FF /* LoginConnectViewController.xib */; }; CD1A6CDB1704811B0002763A /* TMPhotoQuiltViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1A6CDA1704811A0002763A /* TMPhotoQuiltViewCell.m */; }; @@ -118,7 +116,6 @@ CD1D827016E9215600877A8E /* MenuTableViewSectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD1D826F16E9215600877A8E /* MenuTableViewSectionCell.xib */; }; CD1D827316E9412800877A8E /* MenuTableViewSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1D827216E9412800877A8E /* MenuTableViewSearchCell.m */; }; CD1D827516E9413A00877A8E /* MenuTableViewSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD1D827416E9413900877A8E /* MenuTableViewSearchCell.xib */; }; - CD206936163B232C00F92F8A /* LoginCreateAccountViewController5.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD206934163B232C00F92F8A /* LoginCreateAccountViewController5.xib */; }; CD25838F17F4C24900A62574 /* UploadStatusTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD25838E17F4C24900A62574 /* UploadStatusTableViewController.m */; }; CD30D57016303E54001A0CA0 /* ELCAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = CD30D56216303E54001A0CA0 /* ELCAsset.m */; }; CD30D57116303E54001A0CA0 /* ELCAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CD30D56416303E54001A0CA0 /* ELCAssetCell.m */; }; @@ -893,9 +890,6 @@ CD15283F1628DB8500EA08FF /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = ""; }; CD1528401628DB8500EA08FF /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = ""; }; CD1528411628DB8500EA08FF /* LoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginViewController.xib; sourceTree = ""; }; - CD1528421628DB8500EA08FF /* LoginCreateAccountViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginCreateAccountViewController.h; sourceTree = ""; }; - CD1528431628DB8500EA08FF /* LoginCreateAccountViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginCreateAccountViewController.m; sourceTree = ""; }; - CD1528441628DB8500EA08FF /* LoginCreateAccountViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginCreateAccountViewController.xib; sourceTree = ""; }; CD1528451628DB8500EA08FF /* LoginConnectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginConnectViewController.h; sourceTree = ""; }; CD1528461628DB8500EA08FF /* LoginConnectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginConnectViewController.m; sourceTree = ""; }; CD1528471628DB8500EA08FF /* LoginConnectViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginConnectViewController.xib; sourceTree = ""; }; @@ -929,7 +923,6 @@ CD1D827116E9412800877A8E /* MenuTableViewSearchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenuTableViewSearchCell.h; sourceTree = ""; }; CD1D827216E9412800877A8E /* MenuTableViewSearchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MenuTableViewSearchCell.m; sourceTree = ""; }; CD1D827416E9413900877A8E /* MenuTableViewSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MenuTableViewSearchCell.xib; sourceTree = ""; }; - CD206934163B232C00F92F8A /* LoginCreateAccountViewController5.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginCreateAccountViewController5.xib; sourceTree = ""; }; CD25838D17F4C24900A62574 /* UploadStatusTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UploadStatusTableViewController.h; sourceTree = ""; }; CD25838E17F4C24900A62574 /* UploadStatusTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UploadStatusTableViewController.m; sourceTree = ""; }; CD2583E317FCB3B000A62574 /* ELCAssetSelectionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ELCAssetSelectionDelegate.h; sourceTree = ""; }; @@ -1623,10 +1616,6 @@ CD1528411628DB8500EA08FF /* LoginViewController.xib */, CDCC0BC616E0C66400BE4481 /* LoginViewController5.xib */, CDDFDA3E1729422A00D992DC /* LoginViewControlleriPad.xib */, - CD1528421628DB8500EA08FF /* LoginCreateAccountViewController.h */, - CD1528431628DB8500EA08FF /* LoginCreateAccountViewController.m */, - CD1528441628DB8500EA08FF /* LoginCreateAccountViewController.xib */, - CD206934163B232C00F92F8A /* LoginCreateAccountViewController5.xib */, CD1528451628DB8500EA08FF /* LoginConnectViewController.h */, CD1528461628DB8500EA08FF /* LoginConnectViewController.m */, CD1528471628DB8500EA08FF /* LoginConnectViewController.xib */, @@ -2689,13 +2678,11 @@ CDFAF34716285495007A4FDF /* NewestPhotoCell.xib in Resources */, CDFAF34916285495007A4FDF /* UploadCell.xib in Resources */, CD15284B1628DB8500EA08FF /* LoginViewController.xib in Resources */, - CD15284D1628DB8500EA08FF /* LoginCreateAccountViewController.xib in Resources */, CD15284F1628DB8500EA08FF /* LoginConnectViewController.xib in Resources */, CD30D57216303E54001A0CA0 /* ELCAssetPicker.xib in Resources */, CD30D57416303E54001A0CA0 /* ELCImagePickerController.xib in Resources */, CD30D57716303E54001A0CA0 /* SyncViewController.xib in Resources */, CD30D84216369CF1001A0CA0 /* PhotoViewController.xib in Resources */, - CD206936163B232C00F92F8A /* LoginCreateAccountViewController5.xib in Resources */, CDC7AF39164028E100FC8BC1 /* PhotoViewController5.xib in Resources */, CDCC0A8F16E0C23700BE4481 /* appbar_empty.png in Resources */, CDCC0A9016E0C23700BE4481 /* appbar_empty@2x.png in Resources */, @@ -3001,7 +2988,6 @@ CDFAF36016285C4E007A4FDF /* Synced+Methods.m in Sources */, CD1528481628DB8500EA08FF /* Account.m in Sources */, CD15284A1628DB8500EA08FF /* LoginViewController.m in Sources */, - CD15284C1628DB8500EA08FF /* LoginCreateAccountViewController.m in Sources */, CD15284E1628DB8500EA08FF /* LoginConnectViewController.m in Sources */, CD1CDE39162C275F00E57F73 /* CoreDataTableViewController.m in Sources */, CD1CDE3C162C2AE400E57F73 /* CoreLocationController.m in Sources */,