-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
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
How to remove the animation #86
Comments
Could you describe what animation you are seeing and how it differs from your expectations? Or attach a .gif? |
That indeed does not look normal. Can you post some of your code, and explain when this behavior occurs? |
@BasThomas This animation appears when this particular collectionView or tableview appear, here is the slow motion GIF of it and the code is nothing fancy. just a normal tableView. import UIKit
import MessageViewController
class ViewController: MessageViewController {
let tableView = UITableView()
override func viewDidLoad() {
super.viewDidLoad()
setup(scrollView: tableView)
// Change the appearance of the text view and its content
messageView.inset = UIEdgeInsets(top: 16, left: 16, bottom: 16, right: 16)
messageView.textView.placeholderText = "New message..."
messageView.textView.placeholderTextColor = .lightGray
messageView.font = .systemFont(ofSize: 17)
messageView.backgroundColor = .yellow
self.borderColor = .red
// Setup the button using text or an icon
messageView.setButton(title: "Send", for: .normal, position: .right)
messageView.rightButtonTint = .blue
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
tableView.dataSource = self
}
}
extension ViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.backgroundColor = .green
return cell
}
} |
I believe changing |
@nathantannar4 Not working. I tried calling on messageView.layoutIfNeeded()
tableView.layoutIfNeeded()
self.view.layoutIfNeeded() I upload the code example here |
I think this is only present when you set |
It's not working for me. @nathantannar4 even with this code UIView.performWithoutAnimation {
self.setup(scrollView: tableView)
} |
@BasThomas @nathantannar4 I think this problem is a bug |
@lohenyumnam If you refer to my last comment I meant ALL setup code in viewDidLoad, not just the scroll view setup. Im not sure how much of a bug this would be, as its only reproducible during app launch. Do you have a specific use case for why you're using MessagesViewController as your root vc? |
@nathantannar4 I tried putting all the code inside the |
This Unusual animation doesn't seem to occur in the example project, so what I did is I copy the example's ViewController code to my ViewController and here is the result. we can see the same animation. And I didn't stop, there just to make sure, this time I copy my ViewController's code to example's ViewController and here is the result |
Ok here is the thing this problem seems to go away if I install from master
|
Possibly fixed in |
@nathantannar4 I am not sure, but master branch doesn't seems to have the problem. |
I am using this MessageViewController, with IGListKit, and I notice something when the viewController appears there is some kind of animation. is this just me ??
The text was updated successfully, but these errors were encountered: