
实用短代码
gghu1986
人生最可怕的是什么?当你忙忙碌碌,风风火火走了几十年后,回头一看,发现还没有找到真正属于自己的人生位置。不要在不停的幻想中把自己给迷失了。要脚踏实地走好人生的每一步!
展开
-
判断iphone设备是否为高清屏
#define isRetina ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640,960), [[UIScreen mainScreen] currentMode].size) : NO)原创 2013-01-15 15:53:14 · 663 阅读 · 0 评论 -
程序内部让用户直接上appstore评价游戏的链接地址以及跳转方法
这个地址很常用,但是很多人又不知道去哪里寻找。放在这里方便以后再用。 NSString *str = [NSString stringWithFormat:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa /wa/viewContentsUserReviews?type=Purple+Software&id=%d", Config_转载 2013-03-22 17:23:02 · 1146 阅读 · 0 评论 -
IOS URL带中文报错解决方法
URL带中文的问题:请求带中文的URL的资源时,比如:http://s237.sznews.com/pic/2010/11/23/e4fa5794926548ac953a8a525a23b6f2/竞赛资讯.png(可以在浏览器查看),用它来直接初始化NSURL,请求时报错: 2010-11-23 23:15:20.001 sz2011[695:207] download img转载 2013-03-20 09:42:35 · 1416 阅读 · 0 评论 -
iOS本地推送
第一步:创建本地推送 // 创建一个本地推送 UILocalNotification *notification = [[[UILocalNotification alloc] init] autorelease]; //设置10秒之后 NSDate *pushDate = [NSDate dateWithTimeIntervalSinceNow:10]; if (notificatio原创 2013-03-20 09:29:23 · 1259 阅读 · 0 评论 -
自封装UIAlert类:BlockAlertView
.h文件 typedef void (^blockAlertViewCallBackBlock)(int btnIndex); #import @interface BlockAlertView : NSObject - (void)showAlertWithTitle:(NSString *)title msg:(NSString *)msg callbackBlock:(bl原创 2013-03-20 10:21:46 · 2354 阅读 · 0 评论 -
IOS实现摇一摇源代码
.h文件 @interface ShakeViewController : UIViewController { UIAccelerationValue myAccelerometer[3]; //是否响应摇一摇的标志 BOOL _canShake; } .m文件中 #define kFilteringFactor原创 2013-03-12 17:50:05 · 5152 阅读 · 0 评论 -
调试函数耗时的利器CFAbsoluteTimeGetCurrent
CFAbsoluteTime start = CFAbsoluteTimeGetCurrent(); // do something CFAbsoluteTime end = CFAbsoluteTimeGetCurrent(); NSLog(@"time cost: %0.3f", end - start);原创 2013-03-12 09:53:45 · 4526 阅读 · 0 评论 -
ios通过URL地址,从网络上获取图片
-(UIImage *) getImageFromURL:(NSString *)fileURL { NSLog(@"执行图片下载函数"); UIImage * result; NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:fileURL]]; result = [UIImage原创 2013-02-26 11:00:01 · 2373 阅读 · 0 评论 -
位数不够前面补0,适用于输出编号和读取文件
int a = 4; printf("%03d",a); 输出:004 也可以用 * 代替位数,在后面的参数列表中用变量控制输出位数; int a = 4; int n = 3; printf("%0*d",n,a); 输出:004原创 2013-02-05 17:31:45 · 2238 阅读 · 1 评论 -
在iPhone应用里直接打开app store评论页面的方法
在iPhone应用里直接打开app store 评论页面的方法: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Soft原创 2013-01-15 15:27:14 · 1046 阅读 · 0 评论 -
单行显示的UILabel根据文字内容自动调整宽度,文字下方加下划线
//根据文字的长度,动态显示label的frame [self.agreeLabel setNumberOfLines:0]; NSString *s = NSLocalizedString(@"register_agreelabel", nil); UIFont *font = [UIFont fontWithName:@"Arial" size:12]原创 2013-04-28 18:01:15 · 1421 阅读 · 0 评论