2
0

Fixed and updated InAppSettingsKit.

[UPDATED]   InAppSettingsKit
[IMPROVED]  Text in Settings.bundle.
This commit is contained in:
Maarten Billemont
2013-04-27 16:01:31 -04:00
parent 5d5e9395b3
commit 3219fc764f
11 changed files with 285 additions and 320 deletions

View File

@@ -121,14 +121,6 @@
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
#pragma mark - IASKSettingsDelegate
- (void)settingsViewControllerDidEnd:(IASKAppSettingsViewController *)sender {
while ([self.navigationController.viewControllers containsObject:sender])
[self.navigationController popViewControllerAnimated:YES];
}
#pragma mark - MPTypeDelegate
- (void)didSelectType:(MPElementType)type {
@@ -157,13 +149,4 @@
[activeUser.managedObjectContext saveToStore];
}
- (IBAction)settings:(UIBarButtonItem *)sender {
IASKAppSettingsViewController *vc = [IASKAppSettingsViewController new];
vc.showDoneButton = NO;
[self.navigationController pushViewController:vc animated:YES];
[[LocalyticsSession sharedLocalyticsSession] tagScreen:@"Settings"];
}
@end