增加换肤功能
This commit is contained in:
@@ -380,12 +380,12 @@
|
||||
|
||||
}
|
||||
-(void)miniRoom{
|
||||
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
// self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
[self.navigationController popViewControllerAnimated:YES];
|
||||
}
|
||||
-(void)leaveRoom{
|
||||
[[QXGlobal shareGlobal]quitRoomWithRoomId:self.roomId];
|
||||
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
// self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
[self.navigationController popViewControllerAnimated:YES];
|
||||
}
|
||||
|
||||
|
||||
@@ -397,13 +397,17 @@
|
||||
|
||||
-(UIImageView *)noUserImageView{
|
||||
if (!_noUserImageView) {
|
||||
_noUserImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"room_seat_icon"]];
|
||||
UIImage *image = [UIImage imageNamed:@"room_seat_icon"];
|
||||
// image = [image imageByTintColor:QXConfig.themeColor];
|
||||
_noUserImageView = [[UIImageView alloc] initWithImage:image];
|
||||
}
|
||||
return _noUserImageView;
|
||||
}
|
||||
-(UIImageView *)offlineImageView{
|
||||
if (!_offlineImageView) {
|
||||
_offlineImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"room_user_offline"]];
|
||||
UIImage *image = [UIImage imageNamed:@"room_user_offline"];
|
||||
// image = [image imageByTintColor:QXConfig.themeColor];
|
||||
_offlineImageView = [[UIImageView alloc] initWithImage:image];
|
||||
_offlineImageView.contentMode = UIViewContentModeScaleToFill;
|
||||
_offlineImageView.hidden = YES;
|
||||
}
|
||||
|
||||
@@ -275,12 +275,12 @@
|
||||
|
||||
}
|
||||
-(void)miniRoom{
|
||||
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
// self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
[self.navigationController popViewControllerAnimated:YES];
|
||||
}
|
||||
-(void)leaveRoom{
|
||||
[[QXGlobal shareGlobal]quitRoomWithRoomId:self.roomModel.room_info.room_id];
|
||||
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
// self.navigationController.interactivePopGestureRecognizer.enabled = YES;
|
||||
[self.navigationController popViewControllerAnimated:YES];
|
||||
}
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user