摘要: 地图+大头针程序包涵MapKit.framework+CoreLocation.framework两个库入口函数接口 1 // ViewController.h 2 // maps 3 4 #import <UIKit/UIKit.h> 5 #import <MapKit/MapKit.h> 6 7 @interface ViewController : UIViewController<CLLocationManagerDelegate,MKMapViewDelegate> 8 { 9 MKMapView *_mapView;10 }11 12 @end入 阅读全文
posted @ 2013-01-28 18:05 NSLog 阅读(377) 评论(0) 推荐(0) 编辑