フォントの指定で
としていたのですが・・・
- (UIFont *)bodyFontWithSize:(CGFloat)ptSize {
//return [UIFont fontWithName:@"ArialRoundedMTBold" size:ptSize];
}
Xcode6ではエラーになるので
- (UIFont *)bodyFontWithSize:(CGFloat)ptSize {
return [UIFont fontWithDescriptor:[UIFontDescriptor fontDescriptorWithFontAttributes:@{@"NSCTFontUIUsageAttribute" : UIFontTextStyleBody,
@"NSFontNameAttribute" : @"ArialRoundedMTBold"}] size:ptSize];
}
としたらちゃんと動いた、よ。