From what I understand by using code like this:
NSURL* appUrl = [NSURL URLWithString: @\"URL\"]; [[UIApplication sharedApplication] openURL:appUrl]; <
NSURL* appUrl = [NSURL URLWithString: @\"URL\"]; [[UIApplication sharedApplication] openURL:appUrl];
In iOS 8 and later you can send the user to your app's settings in the following way:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];