Я добавляю немного UIButton к виду, но шрифт на кнопке кажется не гладким (на экране сетчатки) ....
См. Изображение: ![enter image description here](https://i.stack.imgur.com/gTgq6.png)
кто-нибудь помогите?Спасибо!
Вот способ добавления кнопок:
- (void)setItems:(NSArray *)items {
if (_items != items) {
_items = items;
for (UIView *v in self.containerView.subviews) {
[v removeFromSuperview];
}
int i = 1;
CGFloat y = 8;
for (id item in _items) {
UIButton *itemButton = [UIButton buttonWithType:UIButtonTypeCustom];
itemButton.frame = CGRectMake(0, y, self.containerView.bounds.size.width, 35);
itemButton.tag = i;
[itemButton setTitle:item forState:UIControlStateNormal];
[itemButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[itemButton setBackgroundImage:[UIImage imageNamed:@"bg.png"] forState:UIControlStateHighlighted];
itemButton.titleLabel.font = [UIFont boldSystemFontOfSize:20];
[itemButton addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
y += 35;
[self.containerView addSubview:itemButton];
i++;
}
}
}