Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Classes/Core/Controllers/FLEXTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ - (void)setupToolbarItems {
];

for (UIBarButtonItem *item in self.toolbarItems) {
[item _setWidth:60];
item.width = 60;
// This does not work for anything but fixed spaces for some reason
// item.width = 60;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the comment seems relevant?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah we're also not concerned with non-public API usage as long as it still funcitons. Devs should not be submitting builds with FLEX in it to Apple.

}
Expand Down
2 changes: 0 additions & 2 deletions Classes/Utility/Categories/UIBarButtonItem+FLEX.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,4 @@
/// @return the receiver
- (UIBarButtonItem *)flex_withTintColor:(UIColor *)tint;

- (void)_setWidth:(CGFloat)width;

@end