iOS 开发 简单的系统自带选择图片和视频控件
2026/5/8 22:59:55 网站建设 项目流程

系统自带的,就是来做个记录。重点是自带对视频简单的裁剪操作,很实用

不多说直接.m 文件中的代码吧

#import "ViewController.h" @interface ViewController ()<UIImagePickerControllerDelegate,UINavigationControllerDelegate> @property (strong, nonatomic) UIImagePickerController *imagePickerController; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; UIButton* pickVideoBtn = [UIButton buttonWithType:UIButtonTypeCustom]; [pickVideoBtn setFrame:CGRectMake(0, 0, 100, 50)]; [pickVideoBtn setCenter:CGPointMake(self.view.frame.size.width/2, 100)]; [pickVideoBtn setTitle:@"选择视频" forState:UIControlStateNormal]; [pickVideoBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; [pickVideoBtn addTarget:self action:@selector(PickVideo) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:pickVideoBtn]; } //视频 -(void)PickVideo

需要专业的网站建设服务?

联系我们获取免费的网站建设咨询和方案报价,让我们帮助您实现业务目标

立即咨询