Если я создаю пользовательский UIButton с изображениями для UIControlState normal и UIControlStateSelected, я все еще должен иметь возможность отображать заголовок для кнопки?В настоящее время я не могу.Вот как я создаю свою кнопку:
UIImage *moveButtonImage = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"button_move_inactive" ofType:@"png"] ];
UIImage *moveButtonSelectedImage = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"button_move_pressed" ofType:@"png"] ];
self.moveButton = [UIButton buttonWithType:UIButtonTypeCustom];
[self.moveButton setImage : moveButtonImage forState : UIControlStateNormal];
[self.moveButton setImage : moveButtonSelectedImage forState : UIControlStateSelected];
[self.moveButton setTitle:@"Test" forState:UIControlStateNormal];
В этом случае заголовок кнопки никогда не отображается, и я вынужден создать свой собственный ярлык для отображения на кнопке, что выглядит как хакерский способ действий,Может я тут что-то не так делаю?