UIImageView
を使用してアプリケーションに を追加し、IBOutlet
プログラムでイメージを割り当てましたが、イメージが表示されません。私のコードを以下に示します。
NSString *string = @"Some text";
UIGraphicsBeginImageContext(CGSizeMake(180, 50));
[string drawAtPoint:CGPointMake(10, 20)
withFont:[UIFont systemFontOfSize:12]];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
//[imageview setImage:result];
//[imageview
sample.image =result;