Skip to content

Commit

Permalink
update test data
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLaganiere authored and Christopher Laganiere committed Oct 12, 2015
1 parent 878a46b commit cbb723e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Ryff.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1343,6 +1343,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEFINES_MODULE = YES;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/**";
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Ryff/Ryff-Prefix.pch";
Expand Down Expand Up @@ -1379,6 +1380,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEFINES_MODULE = YES;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/**";
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Ryff/Ryff-Prefix.pch";
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions Ryff/Classes/RYAudioDeckViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class RYAudioDeckViewController: UIViewController, UITableViewDataSource, UITabl
func reloadCurrentlyPlayingCell() {
if let post = audioDeck?.currentlyPlaying, postIndex = audioDeck?.currentPlaylist?.readyPosts.indexOf(post) {
let indexpath = NSIndexPath(index: postIndex)
if let postCell = tableView.cellForRowAtIndexPath(indexpath) as? RYAudioDeckTableViewCell {
postCell.styleWithReadyPost(post)
}
// if let postCell = tableView.cellForRowAtIndexPath(indexpath) as? RYAudioDeckTableViewCell {
// postCell.styleWithReadyPost(post)
// }
}
}

Expand Down
2 changes: 1 addition & 1 deletion Ryff/Classes/RYRegistrationServices.m
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ - (void) setLoggedInUser:(NSDictionary *)userDict username:(NSString *)username
- (BOOL) attemptBackgroundLogIn
{
// TEST
[self logInUserWithUsername:@"sheschool" Password:@"password" forDelegate:nil];
[self logInUserWithUsername:@"trachytoid" Password:@"password" forDelegate:nil];
return YES;
// TEST

Expand Down

0 comments on commit cbb723e

Please sign in to comment.