posts - 9,  comments - 0,  trackbacks - 0
判断当前设备:
Ipad:

#define isPad(UI_USER_INTERFACE_IDIOM()==UIUserInterfaceIdiomPad)

Mac&Iphone&Ipod:

#if TARGET_OS_IPHONE
NSLog(
@"iphone");
#elif TARGET_OS_MAC
NSLog(
@"mac");
#elif
NSLog(
@"other");
#endif

缩放图片:

-(UIImage *)scaleimage:(UIImage *)img size:(CGSize)c
{
    UIGraphicsBeginImageContext(c);
    [img drawInRect:CGRectMake(
00, c.width, c.height)];
    UIImage 
*image=UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
return image;
}
posted on 2010-10-22 15:45 阅读(230) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航:
 
<2010年10月>
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456

常用链接

留言簿(1)

随笔档案

文章分类

搜索

  •  

最新评论

阅读排行榜

评论排行榜