Commit 4ae7870b7054a1bcff05e0ea157c4bc8de504c7c

Authored by 梁星国
1 parent 1b87d80a

提交

CNLiveImagePickerController.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveImagePickerController'
11   - s.version = '0.0.10'
  11 + s.version = '0.0.11'
12 12 s.summary = '相册'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
Example/CNLiveImagePickerController/CNLiveViewController.m
... ... @@ -44,8 +44,8 @@
44 44 // 1.设置目前已经选中的图片数组
45 45 imagePickerVc.selectedAssets = nil; // 目前已经选中的图片数组
46 46 // 发布时长限制
47   - imagePickerVc.maxEditVideoTime = kChat_limit_video_length;
48   - imagePickerVc.maxVideoDuration = kChat_limit_video_length;
  47 + imagePickerVc.maxEditVideoTime = kChat_limit_video_length_upload;
  48 + imagePickerVc.maxVideoDuration = kChat_limit_video_length_upload;
49 49 imagePickerVc.conversationId = @"defult";
50 50 imagePickerVc.timeout = 300;
51 51 imagePickerVc.isExportVideo = YES;//允许导出
... ...