💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## **打开本地摄像头** //获取摄像头列表 0为后置摄像头 1为前置摄像头 AnyChatCamera *videoDevice = [[AnyChatSDK getInstance]getCameras][1]; self.videoDevice = videoDevice; //打开本地摄像头,并在页面上显示视频画面 [self.videoDevice openWithRenderView:self.theLocalView]; #### 接口说明 打开本地摄像头 #### 接口返回值 无 #### 接口参数简介 | 名称 |类型 |说明 |是否必须 | | --- | --- | --- | --- | | theLocalView | UIView | 显示本地视频的视图| 是 | AnyChatCamera类简介: | 属性 |类型 |说明 | | --- | --- | --- | | no | int |摄像头编号 | | name | NSString |摄像头名称 | | isAutoResizeRenderViewFrame | BOOL | 视频是否自动跟随适应容器frame的大小变化 | | 方法 | 说明 | 返回参数 | | --- | --- | --- | | openWithRenderView: theLocalView | 打开 | void | | close | 关闭 | void |