`
siruoxian
  • 浏览: 242718 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
 NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"badge"];  [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];    NSString *result = [path stringByA ...
    NSString *stringList=@"nice,good,perfect";     NSArray *list=[stringList componentsSeparatedByString:@","];
  网上看到的,在这里收藏一下:    互联网 App 中经常会用到 html 颜色值转换 UIColor,比如:#FF9900、0XFF9900 等颜色字符串,以下方法可以将这些字符串转换为 UIColor 对象。     + (UIColor *) colorWithHexString: (NSString *) stringToConvert    {     NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineChar ...

获取imei

网上看到的说法,还没有用过,先在这里收藏一下,留作日后使用。 #import "Message/NetworkController.h"NetworkController *ntc=[[NetworkController sharedInstance] autorelease];NSString *imeistring = [ntc IMEI];
最近在研究静态类库,纠结了好久终于解决所有问题,打包成功,在这里和大家分享一下,希望会对大家有些帮助。 首先新建一个项目,【create project 】 然后在你的项目中添加一个target ,【add target】 选择 【Cocoa Touch Static Library】 在你的target中添加你需要打包的文件 ,【Build Phases】->【Compiles Sources】在这里添加你需要打包的文件 在这里需要支持模拟器和真机两种模式 首先把你的target在simulator模式下build一下,然后在deveice模式下build一下,bulid成 ...
最近用到了tableCell ,但右方始终会有一个小箭头,这并不是我想要的的,用下面的方法可以去掉:   _cell.accessoryType=UITableViewCellAccessoryNone; 这里要标记一下,希望遇到相同问题的朋友可以用到。
[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
现在使用的xcode 4.2,最近要打包应用程序,网上查了好多都是关于3.2.5的,经过一翻努力终于解决了,现在分享给大家,希望对大家有帮助。 首先要连接真机,选择【product】下的【building for】,然后再选择【build for archiving 】,然后选择【product】下的【archive】 ,在这里会打开【Origanizer-Archives】,在下方选中你要打包发布的程序,你会看到【Validate...】、【Share...】、【Submit...】三个选项,在此可以根据你的需要依次进行操作。   在做上述工作之前,首先要确定你的应用程序可以在真机上运行 ...
最近刚拿到一个项目,要真机调试,网上看了好多资料,经过自己的一翻努力,终于解决了所有问题,连接真机成功,在这里和大家分享一下,希望对大家有点帮助。首先就是要有一个app的开发账号。如果没有的话就需要去注册一下。可以登录到下面的网址进行注册。http://developer.apple.com光有账号是不行的,必须是apple认证的账户才行,也就是说一定要是花了99$或是299$的付费开发者。下面切入正题: 跟大家分享两个教程 http://linglong117.blog.163.com/blog/static/2771454720105184281546/(网页)http://www.bo ...
在"终端"中输入命令defaults write com.apple.finder AppleShowAllFiles TRUEkillall Finder同样的道理可以让Finder不显示隐藏文件:defaults write com.apple.finder AppleShowAllFiles FALSEkillall Finder   再重启Finder
XML解析错误:未组织好 位置:http://localhost:8080/showad/showad.groovy?method=getAdData 行:1,列:619:   <imageurl> - <![CDATA[ http://192.168.1.10//adsfile/icon.jpg   ]]> <script></script>   </imageurl>
Tomcat启动时提示: 2010-9-16 10:38:03 org.apache.tomcat.util.digester.SetPropertiesRule begin警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:strut2demo' did not find a matching property. [SetPropertiesRule]警告的原因是Tomcat6.0的server.xm ...
_list=[_dataString componentsSeparatedByString:@","];
今天在网上看到这个,先留着 + (void) makeCall:(NSString *)phoneNumber{        NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", phoneNumber]];    NSLog(@"make call, URL=%@", phoneNumberURL);        [[UIApplication sharedApplication] openURL:phoneNumberURL];     ...

NSURLConnection

<!--StartFragment --> 异步请求: NSURL *_url=[NSURL URLWithString:@http://192.168.1.150/test/index.jsp];NSMutableURLRequest *_request= [[NSMutableURLRequest alloc] initWithURL:_url cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60];//[[NSMutableURLRequest alloc] initWithURL:_ ...
Global site tag (gtag.js) - Google Analytics