UITextView のフォントを textview.font = [UIFont fontWithName:etc]; で変更しようとしています。しかし、何らかの理由で何もせず、常に同じフォントとサイズで表示されます。コードは次のとおりです。
UITextView *descriptionTextView = [[UITextView alloc] initWithFrame:rect];
descriptionTextView.editable = NO;
descriptionTextView.scrollEnabled = NO;
descriptionTextView.text = description;
titleTextView.font = [UIFont fontWithName:@"Veranda" size:17.0]; //<- this line isn't working
[cell.contentView addSubview:descriptionTextView];
問題が何であるか考えていますか?
本当にありがとう!