forked from organicmaps/organicmaps-tmp
Merge pull request #982 from VladiMihaylenko/vm-master
[ios] Fixed bookmark's category name offset.
This commit is contained in:
commit
cc6d57ec2b
1 changed files with 5 additions and 3 deletions
|
@ -120,9 +120,11 @@ extern NSString * const kBookmarksChangedNotification = @"BookmarksChangedNotifi
|
|||
[cell layoutIfNeeded];
|
||||
CGRect const leftR = cell.textLabel.frame;
|
||||
CGFloat const padding = leftR.origin.x;
|
||||
CGRect r = CGRectMake(padding + leftR.size.width + padding, leftR.origin.y,
|
||||
cell.contentView.frame.size.width - 3 * padding - leftR.size.width, leftR.size.height);
|
||||
UITextField * f = [[UITextField alloc] initWithFrame:r];
|
||||
|
||||
UITextField * f = [[UITextField alloc] initWithFrame:{{padding + leftR.size.width + padding + leftR.origin.x,
|
||||
leftR.origin.y},
|
||||
{cell.contentView.frame.size.width - 3 * padding - leftR.size.width,
|
||||
leftR.size.height}}];
|
||||
f.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
|
||||
f.enablesReturnKeyAutomatically = YES;
|
||||
f.returnKeyType = UIReturnKeyDone;
|
||||
|
|
Loading…
Add table
Reference in a new issue