주석이 곧 설명. - (UIImage*)makeImage{ // 기본 이미지 UIImage *image = [UIImage imageNamed:@"image.png"]; // 사용할 글자 NSString *string = [NSString stringWithFormat:@"%@", @"Steve"]; CGFloat fontSize = 15; UIFont *font = [UIFont systemFontOfSize:fontSize]; CGSize textSize = [string sizeWithFont:font]; // 반환될 이미지 크기 CGSize resultImageSize = CGSizeMake(image.size.width + textSize.width, image.size.height); // C..