Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. - (UIImage *)drawImage:(UIImage *)profileImage withBadge:(UIImage *)badge withText:(NSString *)count {
  2. UIGraphicsBeginImageContextWithOptions(profileImage.size, NO, 0.0f);
  3. [profileImage drawInRect:CGRectMake(0, 0, profileImage.size.width, profileImage.size.height)];
  4. [badge drawInRect:CGRectMake(profileImage.size.width - badge.size.width, 0, badge.size.width, badge.size.height)];
  5. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, badge.size.width, badge.size.height)];
  6. label.text = count;
  7. label.textAlignment = NSTextAlignmentCenter;
  8. label.font = [UIFont systemFontOfSize:11.f];
  9. label.textColor = [UIColor whiteColor];
  10. [label drawTextInRect:CGRectMake(profileImage.size.width - badge.size.width, 0, badge.size.width, badge.size.height)];
  11. UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
  12. UIGraphicsEndImageContext();
  13. return resultImage;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement