Created
September 17, 2012 10:47
-
-
Save radianttap/3736656 to your computer and use it in GitHub Desktop.
Remove Legal link in Apple Maps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// hide Legal link in the bottom left corner of Apple maps in iOS 6 | |
for (UIView *v in [self.map subviews]) { | |
NSLog(@"%@", NSStringFromClass([v class])); | |
if ([NSStringFromClass([v class]) isEqualToString:@"MKAttributionLabel"]) { | |
v.hidden = YES; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much for your idea.
for fview in self.mapView.subviews { if NSStringFromClass(fview.classForCoder) == "MKAttributionLabel" { fview.isHidden = true } }