Upside down text in UILabel


/ Published in: Objective C
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #define degreesToRadian(x) (M_PI * (x) / 180.0)
  2.  
  3. myLabel.transform = CGAffineTransformMakeRotation(degreesToRadian(180));

Report this snippet


Comments


You need to login to view comments.