Commit eff265f3526292279e20bc93704dc8aee3e9f78d

Authored by zhangxiaowen
1 parent aedbd406

no message

CNLiveMineModule/Classes/View/CNLiveMineHeaderView.m
... ... @@ -109,7 +109,8 @@ static const NSInteger margin = 20;
109 109 [_name mas_remakeConstraints:^(MASConstraintMaker *make) {
110 110 make.bottom.equalTo(self.certification.mas_top);
111 111 make.left.equalTo(self.certification.mas_left);
112   - make.right.equalTo(self.bgView.mas_right).with.offset(-margin);
  112 +// make.right.equalTo(self.bgView.mas_right).with.offset(-margin);
  113 + make.right.mas_lessThanOrEqualTo(self.bgView.mas_right).with.offset(-margin);
113 114 make.height.equalTo(self.certification.mas_height);
114 115  
115 116 }];
... ...
Example/CNLiveMineModule/CNLIVEAppDelegate.m
... ... @@ -8,6 +8,7 @@
8 8  
9 9 #import "CNLIVEAppDelegate.h"
10 10 #import "CNLiveMineController.h"
  11 +#import "CNLiveGoldWhereaboutsView.h"
11 12  
12 13 @implementation CNLIVEAppDelegate
13 14  
... ...
Example/CNLiveMineModule/CNLiveNotificationManager.h
... ... @@ -7,7 +7,7 @@
7 7 //
8 8  
9 9 /**
10   - * 通知管理类
  10 + * 通知
11 11 */
12 12  
13 13 #import <Foundation/Foundation.h>
... ...
Example/CNLiveMineModule/CNLivePageJumpManager.h
... ... @@ -7,7 +7,7 @@
7 7 //
8 8  
9 9 /**
10   - * 页面跳转管理类
  10 + * 页面跳转
11 11 */
12 12  
13 13 #import <Foundation/Foundation.h>
... ...
Example/CNLiveMineModule/CNLiveRootControllerManager.h
... ... @@ -7,7 +7,7 @@
7 7 //
8 8  
9 9 /**
10   - * 跟控制器管理类
  10 + * 跟控制器
11 11 */
12 12  
13 13 #import <Foundation/Foundation.h>
... ...