(iOS)开发中收集的小方法

时间:2014-08-08 21:01:26   收藏:0   阅读:407

- (UIImage *)createImageWithColor:(UIColor *)color
{
    CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);
    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return theImage;

-(void)goToAppStore    
{        
    NSString *str = [NSString stringWithFormat:    
                     @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d",547203890];    
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];       

  NSUserDefaults* defs = [NSUserDefaults standardUserDefaults];

  NSArray* languages = [defs objectForKey:@"AppleLanguages"];

  NSString* preferredLang = [languages objectAtIndex:0];

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];   

paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;   

NSDictionary *dicAtt = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:15],NSFontAttributeName,paragraphStyle.copy,NSParagraphStyleAttributeName, nil];       

NSAttributedString *attribute = [[NSAttributedString alloc]initWithString:str attributes:dicAtt];   

  CGRect frame = [attribute boundingRectWithSize:CGSizeMake(200, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin context:nil]; 

私有API
[[UIApplication sharedApplication] performSelector:@selector(terminateWithSuccess)];
C语言方法
exit(0);

(iOS)开发中收集的小方法,布布扣,bubuko.com

原文:http://www.cnblogs.com/hikoming/p/3899969.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!