2013年2月4日

ios library Other Linker Flags

摘要: -all_loadforces the linker to load all object files from every archive it sees, even those without Objective-C code.-force_loadis available in Xcode 3.2 and later. It allows finer grain control of archive loading. Each-force_loadoption must be followed by a path to an archive, and every object file 阅读全文

posted @ 2013-02-04 14:21 jackbutler 阅读(123) 评论(0) 推荐(0) 编辑

2012年12月28日

IOS push通知

摘要: 主要资料有1.http://blog.csdn.net/pjk1129/article/details/75336782.http://helloios.diandian.com/post/2011-11-10/6642590或http://www.cnblogs.com/zhuqil/archive/2011/06/05/2070679.html因为原来有两个开发者账号,也不知道应该用哪个开发证书。应该还是用自己正在用的吧,或许两个都可以。但都不支持push。生成好各种文件之后,主要有CertificateSigningRequest.certSigningRequest, .p12 ,ap 阅读全文

posted @ 2012-12-28 15:15 jackbutler 阅读(103) 评论(0) 推荐(0) 编辑

2012年7月27日

NSString 比较(转)

摘要: NSString *value = @"1234567890";比较的方法:[valuecompare:(NSString *)];[valuecompare:(NSString *)options:(NSStringCompareOptions)];[valuecompare:(NSString *)options:(NSStringCompareOptions)range:(NSRange)];传入的参数:compare:(NSString *)传入一个需要比较的字符串。例如 [value compare:@"1234567890"],返回 NSOr 阅读全文

posted @ 2012-07-27 11:58 jackbutler 阅读(296) 评论(0) 推荐(0) 编辑

2012年7月23日

iOS请求webservice(转)

摘要: (IBAction) webServicexRequestPost:(id)sender{//封装soap请求消息,构建webServices请求字符串 NSString* soapMessage = [NSStringstringWithFormat:@"<?xml version=/"1.0/" encoding=/"utf-8/"?>/n" "<soap:Envelope xmlns:xsi=/"http://www.w3.org/2001/XMLSchema-instance/" 阅读全文

posted @ 2012-07-23 16:01 jackbutler 阅读(211) 评论(0) 推荐(0) 编辑

iOS开发之iPhone通过get和post方式请求asp.net web service(转)

摘要: 这篇文章,我将通过一个简单的例子来展现iPhone通过get和post方式请求asp.net webservice。webservice1、创建一个webservice2、在webconfig中启用http get 和http post。<webServices><protocols><addname="HttpSoap"/><addname="HttpPost"/><addname="HttpGet"/><addname="Documentation&quo 阅读全文

posted @ 2012-07-23 15:59 jackbutler 阅读(279) 评论(0) 推荐(0) 编辑

IOS开源项目汇总(转)

摘要: 扫描wifi信息:http://code.google.com/p/uwecaugmentedrealityproject/http://code.google.com/p/iphone-wireless/条形码扫描:http://zbar.sourceforge.net/iphone/sdkdoc/install.htmltcp/ip的通讯协议:http://code.google.com/p/cocoaasyncsocket/voip/sip:http://code.google.com/p/siphon/http://code.google.com/p/asterisk-voicemai 阅读全文

posted @ 2012-07-23 15:50 jackbutler 阅读(121) 评论(0) 推荐(0) 编辑

2012年7月12日

通过custom url scheme启动应用程序(转)

摘要: One of the coolest features of the iPhone SDK is an application’s ability to “bind” itself to a custom URL scheme and for that scheme to be used to launch itself from either a browser or from another application on the iPhone. Creating this kind of binding is so simple, its almost criminal not to us 阅读全文

posted @ 2012-07-12 11:17 jackbutler 阅读(899) 评论(0) 推荐(0) 编辑

2012年5月26日

CGAffineTransform相关函数(二)

摘要: - (void)willAnimateFirstHalfOfRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{ if (toInterfaceOrientation == UIInterfaceOrientationPortrait) { b=YES; self.view=mainvv; self.view.transform = CGAffin... 阅读全文

posted @ 2012-05-26 12:16 jackbutler 阅读(776) 评论(0) 推荐(0) 编辑

CGAffineTransform相关函数(一)

摘要: CGAffineTransform rotation = CGAffineTransformMakeRotation(M_PI_2);[xxx setTransform:rotation];呵呵就这么简单的两行代码就可以实现了!顺便记录一些常量,以后用的着!#define M_E2.71828182845904523536028747135266250e#define M_LOG2E1.44269504088896340735992468100189214log 2e#define M_LOG10E0.434294481903251827651128918916605082log 10e#de 阅读全文

posted @ 2012-05-26 12:14 jackbutler 阅读(198) 评论(0) 推荐(0) 编辑

2012年5月16日

技术牛人博客

摘要: http://www.adobe.com/cn/devnet/flash/articles/ios_tutorial_3_pro_cert.htmlhttp://blog.csdn.net/chun799/ 阅读全文

posted @ 2012-05-16 13:38 jackbutler 阅读(136) 评论(0) 推荐(0) 编辑

导航