ios开发调用摄像头代码
摘要:UIActionSheet*actionSheet=[[UIActionSheetalloc]initWithTitle:@""delega...
UIActionSheet *actionSheet=[[UIActionSheet alloc] initWithTitle:@"" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Take Photo",@"Choose From Library",nil];
actionSheet.actionSheetStyle=self.navigationController.navigationBar.barStyle;
[actionSheet showInView:self.view.superView]
[actionSheet release];
【ios开发调用摄像头代码】相关文章:
★ iOS应用开发中使用Auto Layout来适配不同屏幕尺寸
★ iOS开发中使用NSURLConnection类处理网络请求的方法