提交
This commit is contained in:
@@ -9,12 +9,14 @@
|
||||
#import "QXRoomSeatContentView.h"
|
||||
#import "QXRoomSeatDelegate.h"
|
||||
#import "QXUserModel.h"
|
||||
#import "QXSelectAuctionInfoView.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
@interface QXRoomSeatTypeAuctionView : UIView
|
||||
@property (nonatomic,weak)id<QXRoomSeatDelegate>delegate;
|
||||
@property (nonatomic,strong)QXRoomModel *roomModel;
|
||||
@property (nonatomic,assign)NSInteger myPitNumber;
|
||||
@property (nonatomic,strong)QXSelectAuctionInfoView *auctionInfoView;
|
||||
|
||||
|
||||
-(void)didUpDownSeatWithUser:(QXUserHomeModel *)user isUpSeat:(BOOL)isUpSeat pit_number:(NSInteger)pit_number;
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
#import "QXRoomSeatTypeAuctionView.h"
|
||||
#import "QXRoomSeatContentView.h"
|
||||
#import "UIButton+QX.h"
|
||||
#import "QXSelectAuctionInfoView.h"
|
||||
#import "QXMineNetwork.h"
|
||||
#import "QXTimer.h"
|
||||
#import "QXRoomAuctionResultView.h"
|
||||
@@ -63,7 +62,6 @@
|
||||
@property (nonatomic,strong)QXRoomSeatContentView *sixthSeatView;
|
||||
@property (nonatomic,strong)UIButton *moreBtn;
|
||||
|
||||
@property (nonatomic,strong)QXSelectAuctionInfoView *auctionInfoView;
|
||||
|
||||
@property (nonatomic,strong)NSMutableArray *seatArray;
|
||||
@property (nonatomic,strong)QXTimer *timer;
|
||||
|
||||
@@ -103,6 +103,9 @@
|
||||
animations:^{
|
||||
self->_auctionView.transform = CGAffineTransformMakeScale(0.01, 0.01);
|
||||
} completion:^(BOOL finished) {
|
||||
if (self->_auctionView.auctionInfoView != nil) {
|
||||
[self->_auctionView.auctionInfoView hide];
|
||||
}
|
||||
[self->_auctionView destroyViews];
|
||||
[self->_auctionView removeFromSuperview];
|
||||
self->_auctionView = nil;
|
||||
@@ -390,6 +393,9 @@
|
||||
animations:^{
|
||||
self->_auctionView.transform = CGAffineTransformMakeScale(0.01, 0.01);
|
||||
} completion:^(BOOL finished) {
|
||||
if (self->_auctionView.auctionInfoView != nil) {
|
||||
[self->_auctionView.auctionInfoView hide];
|
||||
}
|
||||
[self->_auctionView destroyViews];
|
||||
[self->_auctionView removeFromSuperview];
|
||||
self->_auctionView = nil;
|
||||
@@ -608,6 +614,9 @@
|
||||
animations:^{
|
||||
self->_auctionView.transform = CGAffineTransformMakeScale(0.01, 0.01);
|
||||
} completion:^(BOOL finished) {
|
||||
if (self->_auctionView.auctionInfoView != nil) {
|
||||
[self->_auctionView.auctionInfoView hide];
|
||||
}
|
||||
[self->_auctionView destroyViews];
|
||||
[self->_auctionView removeFromSuperview];
|
||||
self->_auctionView = nil;
|
||||
|
||||
Reference in New Issue
Block a user