We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- (void)viewDidLoad { [super viewDidLoad]; [self requestSuccess:^{ self.tableView.frame = CGRectMake(0, 0, kScreenWidth, kScreenHeight); [self.view addSubview:self.tableView]; } failure:nil]; }
代码这样写,如果接口请求比较快,tableview会把正在显示的fakeBar遮挡掉。
这样的奇葩代码不常见,但问题确实存在。
我把showFakeBarFrom和showFakeBarTo中的FakeImageView、FakeBar、FakeShadow设置了FakeView.layer.zPosition=MAXFLOAT就解决了,不知道有没有别的影响。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
代码这样写,如果接口请求比较快,tableview会把正在显示的fakeBar遮挡掉。
这样的奇葩代码不常见,但问题确实存在。
我把showFakeBarFrom和showFakeBarTo中的FakeImageView、FakeBar、FakeShadow设置了FakeView.layer.zPosition=MAXFLOAT就解决了,不知道有没有别的影响。
The text was updated successfully, but these errors were encountered: