wd修复bug

This commit is contained in:
liyuhua
2023-09-22 14:06:32 +08:00
parent 10c0e5c182
commit de7ce943bd
3 changed files with 12 additions and 7 deletions

View File

@@ -107,7 +107,7 @@
189DD75926E6003C00AB55B1 /* Api.m in Sources */ = {isa = PBXBuildFile; fileRef = 189DD75826E6003C00AB55B1 /* Api.m */; };
189DD76226E60DDC00AB55B1 /* Api+Login.m in Sources */ = {isa = PBXBuildFile; fileRef = 189DD76126E60DDC00AB55B1 /* Api+Login.m */; };
18A61BD7274F7F6900A09A54 /* NetImageConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A61BD6274F7F6900A09A54 /* NetImageConfig.m */; };
18A61BE8274F9CF000A09A54 /* - (BOOL)isHiddenNavBar { return YES; }.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A61BE7274F9CF000A09A54 /* - (BOOL)isHiddenNavBar { return YES; }.m */; };
18A61BE8274F9CF000A09A54 /* SessionListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A61BE7274F9CF000A09A54 /* SessionListViewController.m */; };
18AAF3F0279EA59300CD7DAD /* MessageContentTextClickable.m in Sources */ = {isa = PBXBuildFile; fileRef = 18AAF3EF279EA59300CD7DAD /* MessageContentTextClickable.m */; };
18E7B1B226E8AF980064BC9B /* MainPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E7B1B126E8AF980064BC9B /* MainPresenter.m */; };
18E7B1B726E8B2D10064BC9B /* Api+Main.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E7B1B626E8B2D10064BC9B /* Api+Main.m */; };
@@ -1603,7 +1603,7 @@
18A61BD5274F7F6900A09A54 /* NetImageConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetImageConfig.h; sourceTree = "<group>"; };
18A61BD6274F7F6900A09A54 /* NetImageConfig.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NetImageConfig.m; sourceTree = "<group>"; };
18A61BE6274F9CF000A09A54 /* SessionListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SessionListViewController.h; sourceTree = "<group>"; };
18A61BE7274F9CF000A09A54 /* - (BOOL)isHiddenNavBar { return YES; }.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "- (BOOL)isHiddenNavBar { \treturn YES; }.m"; sourceTree = "<group>"; };
18A61BE7274F9CF000A09A54 /* SessionListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SessionListViewController.m; sourceTree = "<group>"; };
18AAF3EE279EA59300CD7DAD /* MessageContentTextClickable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageContentTextClickable.h; sourceTree = "<group>"; };
18AAF3EF279EA59300CD7DAD /* MessageContentTextClickable.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageContentTextClickable.m; sourceTree = "<group>"; };
18E7B1AE26E8AD760064BC9B /* MainProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MainProtocol.h; sourceTree = "<group>"; };
@@ -4703,7 +4703,7 @@
isa = PBXGroup;
children = (
18A61BE6274F9CF000A09A54 /* SessionListViewController.h */,
18A61BE7274F9CF000A09A54 /* - (BOOL)isHiddenNavBar { return YES; }.m */,
18A61BE7274F9CF000A09A54 /* SessionListViewController.m */,
18EE3FDD2750C1F700A452BF /* SessionListCell.h */,
18EE3FDE2750C1F700A452BF /* SessionListCell.m */,
);
@@ -10819,7 +10819,7 @@
E8A30BEE28534AB1003B4873 /* XPSessionFindNewPresenter.m in Sources */,
9BDA3E7727FD41C200517FE6 /* XPAnchorFansTeamViewController.m in Sources */,
23E9EAAD2A84C9B800B792F2 /* XPMineUserInfoTagItemView.m in Sources */,
18A61BE8274F9CF000A09A54 /* - (BOOL)isHiddenNavBar { return YES; }.m in Sources */,
18A61BE8274F9CF000A09A54 /* SessionListViewController.m in Sources */,
E8C1CD6A27D8937800376F83 /* XPRoomFaceCollectionViewCell.m in Sources */,
9B2EA7C02804037700ED17BF /* AnchorPKStageView.m in Sources */,
23FF427C2AA71CFA0055733C /* XPTreasureFairyBottomView.m in Sources */,

View File

@@ -67,7 +67,7 @@
}];
[self.pagingView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.left.right.equalTo(self.view);
make.bottom.mas_equalTo(-10);
make.bottom.mas_equalTo(-1);
}];
[self.allCleanBtn mas_makeConstraints:^(MASConstraintMaker *make) {
make.width.height.mas_equalTo(30);
@@ -75,7 +75,13 @@
make.right.mas_equalTo(-15);
}];
UIView *lineView = [UIView new];
lineView.backgroundColor = UIColorFromRGB(0xF5F6FA);
[self.view addSubview:lineView];
[lineView mas_makeConstraints:^(MASConstraintMaker *make) {
make.bottom.left.right.equalTo(self.view);
make.height.mas_equalTo(1);
}];
}
#pragma mark - SessionListViewController
-(void)getTabBarItemBadge:(NSNotification *)not{

View File

@@ -103,7 +103,6 @@ NSString * const kMessageShowReadDotKey = @"kMessageShowReadDotKey";
} uid:uid];
}
- (void)initViews {
self.view.backgroundColor = [UIColor clearColor];
[self.view addSubview:self.sessionListView];