Skip to content
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

Buttons don't appear on iOS8 cell #225

Closed
skumancer opened this issue Aug 20, 2014 · 6 comments
Closed

Buttons don't appear on iOS8 cell #225

skumancer opened this issue Aug 20, 2014 · 6 comments

Comments

@skumancer
Copy link

This is kind of weird, but basically the buttons don't appear until the cell is swiped on in landscape orientation and then rotated to portrait orientation.

Using the new UIView feature of Xcode 6, I can see that the content is supposed to be there, but it really is not showing on-device.

screen shot 2014-08-20 at 12 04 11 am

img_4698

@mdelamata
Copy link

I have exactly the same problem running iOS8 GM.

@NSKomodo
Copy link

Any update on this, I'm trying to debug and find the issue, if anyone gets it first please let us know. I will when I find it, I'l even send a pull request.

@rafaelbartolome
Copy link

Be sure that all subviews render over UITableViewCellContentView

static NSString * const kTableViewCellContentView = @"UITableViewCellContentView";

I had a similar problem because of this.

@kinoue
Copy link

kinoue commented Sep 25, 2014

I had the same issue and noticed that rightUtilityButtonsView's frame.origin was set wrong. I don't know where/how it happens, but just forcing it to zero fixed at least my problem (Your experience may vary... I am not familiar with the code of this library.).

I inserted the following lines in - (void) layoutSubviews of SWTableCell.

// Temporal fix to display the right buttons
frame = self.rightUtilityButtonsView.frame;
frame.origin.x = 0;
self.rightUtilityButtonsView.frame = frame;

@sjoness
Copy link

sjoness commented Sep 26, 2014

Updating the library fixed this issue for me

@seeppp
Copy link

seeppp commented Sep 29, 2014

same for me. with version 0.3.0, no right button is shown. with version 0.3.3, everything works fine...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants