Nico
Nico
Well I just saw you added usesHighPrecisionEvaluation. It seems to fix the issue with stringValue but doesn't fix it with doubleValue
I guess you're using the automatic rowHeight? Check this https://github.com/LavaSlider/UITableView-Reorder/issues/4
What do you put inside `-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath` ?
First, I didn't write the readme ;), second, what does happen when you write it like this: `-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { indexPath = [tableView dataSourceIndexPathFromVisibleIndexPath: indexPath]; ``` [self...
Any thoughts?
I don't really know, I didn't really look deeply into the code as I am kind of allergic to objective-c so I was hopping actually you might be aware of...
For those facing the same problem, while they create a new Pod version (which I doubt they will at that stage), you can just use this line in your Podfile:...
A workaround is to use a CATransaction: ``` CATransaction.begin() CATransaction.setCompletionBlock( { // code to call once the animation is over } ) subview.hidden = false CATransaction.commit() ```