// // MKMapView+MoveLogo.h // // Created by Maciej Swic on 2013-07-08. // Released under the MIT license. // // This category allows you to move the MKMapView logo so that it remains visible if you // put other stuff on the mapview. If the logo is hidden, the app won't pass the App Store // review. Tested with iOS 5 through 7. // #import @interface MKMapView (MoveLogo) - (void)moveLogoByOffset:(CGPoint)offset; - (void)moveLogoToPoint:(CGPoint)point; - (UIView*)logo; @end