Once a UIButton is clicked, the contents of a UITableView are changed by UITableView.reloadData() method.
What I want to do further is to change is reloading animation. I want the data to change immediately. Currently, the animation is the same as "Cross Dissolve" of trasition of view controllers; the former one fades out and then the reloaded data slightly shows up.
I cannot find such option to change animation in attributes inspector. How can I handle this problem if I can? Does is need to be managed programmatically?
It would be great if you give me some clues in Swift, not Objective C.