|
@@ -132,6 +132,9 @@
|
|
|
else if(tag==3){
|
|
|
[weakSelf showDeleteAlearViewFun];
|
|
|
}
|
|
|
+ else if(tag==4){
|
|
|
+ [weakSelf ClickInstallAPPToTVFun];
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
//安装类型
|
|
@@ -586,10 +589,17 @@
|
|
|
|
|
|
[self.tableView reloadData];
|
|
|
|
|
|
+ KWeakSelf
|
|
|
[self.tableView mas_remakeConstraints:^(MASConstraintMaker *make) {
|
|
|
make.left.mas_equalTo(0);
|
|
|
make.right.mas_equalTo(0);
|
|
|
- make.bottom.mas_equalTo(0);
|
|
|
+ if(weakSelf.isEditType){
|
|
|
+ make.bottom.equalTo(weakSelf.curEditTypeBottomView.mas_top).offset(0.0);
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ make.bottom.mas_equalTo(0);
|
|
|
+ }
|
|
|
+
|
|
|
if(isDefaultTabType){
|
|
|
make.top.equalTo(self.appInstallTypeV.mas_bottom).offset(10.f);
|
|
|
}
|
|
@@ -1210,5 +1220,13 @@
|
|
|
|
|
|
[self RefreshAllUIFun];
|
|
|
}
|
|
|
+
|
|
|
+#pragma mark 安装APP到TV
|
|
|
+- (void)ClickInstallAPPToTVFun
|
|
|
+{
|
|
|
+ if (_didSelectListArr.count > 5) {
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
@end
|
|
|
|