KyleGoddard / KGFloatingDrawer

A floating navigation drawer with an interesting animated presentation written in Swift.
MIT License
499 stars 79 forks source link

iPad not working #3

Closed Urkman closed 9 years ago

Urkman commented 9 years ago

Not working in iPad

KyleGoddard commented 9 years ago

Can you elaborate on this? Aside from a graphical glitch in the hidden table view in the example project everything seems to work as expected. The graphical glitch can be corrected with the following code added to LeftDrawerTableViewController.swift:

    override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
        cell.backgroundColor = UIColor.clearColor()
    }

I'll make sure to update the example project shortly.