Commit 8ad896efde04abbf8b941a873601c8344121a9b4

Authored by yanglingyu
1 parent 8a05a1a8

修改提交

CNLiveVideoClassifyKit.podspec
... ... @@ -18,7 +18,7 @@ Pod::Spec.new do |s|
18 18 # * Finally, don't worry about the indent, CocoaPods strips it!
19 19  
20 20 s.description = <<-DESC
21   -TODO: Add long description of the pod here.
  21 +视讯分类视讯头部一二级菜单组件.
22 22 DESC
23 23  
24 24 s.homepage = 'http://bj.gitlab.cnlive.com/ios-team/CNLiveVideoClassifyKit.git'
... ... @@ -43,7 +43,7 @@ TODO: Add long description of the pod here.
43 43 s.dependency 'JXCategoryView'
44 44 s.dependency 'CNLiveTripartiteManagement/MJExtension'
45 45 s.dependency 'CNLiveBaseKit'
46   - s.dependency 'CNLiveBaseClass'
  46 + s.dependency 'CNLiveCategory'
47 47 s.dependency 'CNLiveUserManagement'
48 48 s.dependency 'CNLiveCommonCategory'
49 49 s.dependency 'CNLiveBeeHive'
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNCategoryBaseViewController.h
... ... @@ -5,12 +5,11 @@
5 5 // Created by CNLive on 2021/8/12.
6 6 //分类试图控制器基类
7 7  
8   -#import <CNLiveBaseClass/CNLiveBaseViewController.h>
9 8 #import <JXCategoryView/JXCategoryView.h>
10 9  
11 10 NS_ASSUME_NONNULL_BEGIN
12 11  
13   -@interface CNCategoryBaseViewController : CNLiveBaseViewController<JXCategoryViewDelegate,UIPageViewControllerDelegate,UIPageViewControllerDataSource>
  12 +@interface CNCategoryBaseViewController : UIViewController<JXCategoryViewDelegate,UIPageViewControllerDelegate,UIPageViewControllerDataSource>
14 13  
15 14 @property (nonatomic, strong) JXCategoryBaseView *categoryView;
16 15 @property (nonatomic, strong) UIPageViewController *pageViewController;
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNCategoryBaseViewController.m
... ... @@ -19,7 +19,6 @@
19 19 [self addChildViewController:self.pageViewController];
20 20 [self.view addSubview:self.pageViewController.view];
21 21 self.view.backgroundColor = [UIColor whiteColor];
22   - self.navigationHidden = YES;
23 22  
24 23 // Do any additional setup after loading the view.
25 24 }
... ... @@ -34,7 +33,6 @@
34 33 {
35 34 [super viewWillAppear:animated];
36 35 self.navigationController.interactivePopGestureRecognizer.enabled = NO;
37   - self.navigationHidden = YES;
38 36  
39 37 }
40 38  
... ...
Example/CNLiveVideoClassifyKit.xcodeproj/project.pbxproj
... ... @@ -377,14 +377,12 @@
377 377 inputPaths = (
378 378 "${PODS_ROOT}/Target Support Files/Pods-CNLiveVideoClassifyKit_Example/Pods-CNLiveVideoClassifyKit_Example-frameworks.sh",
379 379 "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework",
380   - "${BUILT_PRODUCTS_DIR}/CNLiveBaseClass/CNLiveBaseClass.framework",
381 380 "${BUILT_PRODUCTS_DIR}/CNLiveBaseKit/CNLiveBaseKit.framework",
382 381 "${BUILT_PRODUCTS_DIR}/CNLiveBeeHive/CNLiveBeeHive.framework",
383 382 "${BUILT_PRODUCTS_DIR}/CNLiveBusinessTools/CNLiveBusinessTools.framework",
384 383 "${BUILT_PRODUCTS_DIR}/CNLiveCWebViewModule/CNLiveCWebViewModule.framework",
385 384 "${BUILT_PRODUCTS_DIR}/CNLiveCategory/CNLiveCategory.framework",
386 385 "${BUILT_PRODUCTS_DIR}/CNLiveCommonCategory/CNLiveCommonCategory.framework",
387   - "${BUILT_PRODUCTS_DIR}/CNLiveCustomControl/CNLiveCustomControl.framework",
388 386 "${BUILT_PRODUCTS_DIR}/CNLiveCustomUI/CNLiveCustomUI.framework",
389 387 "${BUILT_PRODUCTS_DIR}/CNLiveEnvironment/CNLiveEnvironment.framework",
390 388 "${BUILT_PRODUCTS_DIR}/CNLiveRequestBastKit/CNLiveRequestBastKit.framework",
... ... @@ -403,14 +401,12 @@
403 401 name = "[CP] Embed Pods Frameworks";
404 402 outputPaths = (
405 403 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AFNetworking.framework",
406   - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBaseClass.framework",
407 404 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBaseKit.framework",
408 405 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBeeHive.framework",
409 406 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBusinessTools.framework",
410 407 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCWebViewModule.framework",
411 408 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCategory.framework",
412 409 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCommonCategory.framework",
413   - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCustomControl.framework",
414 410 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCustomUI.framework",
415 411 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveEnvironment.framework",
416 412 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveRequestBastKit.framework",
... ...