2010年4月9日
摘要:
1. 使用UIMapView的showUserLocation属性。 myMapView.showsUserLocation = YES 显示后读出坐标经纬度: self.userLocation.coordinate.latitude self.userLocation.coordinate.longitude2. 使用CLLocationManager locationManager = [[... 阅读全文
摘要:
UIImagePickerController:1. 有三种工作模式://打开图片库根目录选择UIImagePickerControllerSourceTypePhotoLibrary//使用相机选择UIImagePickerControllerSourceTypeCamera//打开SavedPhoto目录选择UIImagePickerControllerSourceTypeSavedPhoto... 阅读全文
摘要:
NSTimer是Cocoa中比较常用的定时器类,基本操作如下:handleTimer方法可以自行定义。在需要的地方创建timer即可,handleTimer就可以每0.5秒执行一次。- (void) handleTimer: (NSTimer *) timer{ //在这里进行处理}NSTimer *timer;timer = [NSTimer scheduledTimerWithTimeInte... 阅读全文