alekseyn / EasyTableView

Horizontal and vertical scrolling table views for iOS
BSD 3-Clause "New" or "Revised" License
584 stars 157 forks source link

Blurry label content #27

Closed TonciGitHub closed 8 years ago

TonciGitHub commented 11 years ago

Hello

First of all thank U very much for this peace of code...

After transforming the tableview, newly created coordinates don't have integer vals so the content of the tableview becomes blurry. I suggest some type of rounding new coordinate and size values after performing the transform operation in

tobihagemann commented 11 years ago

Could be related.

Replace:

    int xOrigin = (self.bounds.size.width - self.bounds.size.height)/2;
    int xOrigin = (self.bounds.size.width - self.bounds.size.height)/2;

with:

    CGFloat xOrigin = (self.bounds.size.width - self.bounds.size.height)/2;
    CGFloat xOrigin = (self.bounds.size.width - self.bounds.size.height)/2;
alekseyn commented 8 years ago

EasyTableView was just recently updated. The interface has changed slightly so you may need to make changes to your code to support EasyTableView 2.0. Please update and let me know if the same behavior still exists. Thanks.