|
|
@@ -99,7 +99,7 @@ static const CGFloat kQuoteViewHeight = 46.0f;
|
|
|
@property (nonatomic, assign) BOOL isBatchMode;
|
|
|
|
|
|
@property (nonatomic, assign) BOOL showLoading;
|
|
|
-
|
|
|
+@property (nonatomic, assign) BOOL isInit;
|
|
|
|
|
|
|
|
|
@end
|
|
|
@@ -119,6 +119,7 @@ static const CGFloat kQuoteViewHeight = 46.0f;
|
|
|
self._tableView.delegate=self;
|
|
|
self._tableView.dataSource = self;
|
|
|
_isfriend=true;
|
|
|
+ _isInit = YES;
|
|
|
|
|
|
CGFloat safeBottom = [UIDevice safeDistanceBottom];
|
|
|
UIView *temp = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 60+safeBottom)];
|
|
|
@@ -658,7 +659,12 @@ static const CGFloat kQuoteViewHeight = 46.0f;
|
|
|
_showLoading = true;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ if (_isInit) {
|
|
|
+ _isInit = NO;
|
|
|
+ dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
|
+ [self movetoBotton];
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-(void)movetoBotton{
|