I'm using InAppSettingsKit with great success. Now I need to dismiss the inAppSettingsKit modal VC when editing ends in a TextField in inAppSettingsKit (the user hits Done on the keyboard).
InAppSettingsKit has some delegate methods like:
- (void)settingsViewControllerDidEnd:(IASKAppSettingsViewController *)sender
and
- (void)settingsViewController:(IASKAppSettingsViewController *)sender buttonTappedForKey:(NSString*)key
but I can't figure out how to know when other things happen within the InAppSettings VC.
Thought about sub-classing IASKAppSettingsViewController
, but then couldn't find any benefit.
Ideas?