iPhone开发问题集锦(一)

  javaeye终于又开了,赶紧发篇blog

1.tableView添加背景:SDK有个属性backgroundView,直接创建一个imageView赋值即可,模拟器上运行正常,但运行在3.1.2的手机上崩溃,发现这个属性在IOS 3.2之后才加入的,为了版本兼容,只能采用其他办法,俺就在tableView的superView上加背景,效果一样


2.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 fail
2010-11-23 23:15:20.003 sz2011[695:207] error is Error Domain=NSURLErrorDomain Code=-1000 "错误的 URL" UserInfo=0x8088e70 {NSUnderlyingError=0x8083680 "错误的 URL", NSLocalizedDescription=错误的 URL}

后来无意发现这篇文章

(http://dev.10086.cn/cmdn/wiki/index.php?doc-view-3191.html),

加了编码,感谢这位兄台

编码后的URL:

2010-11-23 23:31:24.364 ASITest[919:207] encode string is http://s237.sznews.com/pic/2010/11/23/e4fa5794926548ac953a8a525a23b6f2/%E7%AB%9E%E8%B5%9B%E8%B5%84%E8%AE%AF.png(不能在浏览器查看..)
 

 

3.UserDefault问题:存了第一次,就不能改了..貌似是因为Mutable的容器不支持,改用writeToFile,待以后研究

 

4.tableView顶部向下拖动刷新table:goole了一下,找到

(http://truongvo.w2wgroup.com/?p=42),

我用的是

http://blog.leahculver.com/2010/07/iphone-pull-to-refresh.html,

这个比较简洁,一个class就搞定了,注意在subclass这类的时候,相应的函数后要加上[super xxx]

 

5.字体加粗:boldSystemFontOfSize,感觉比systemFontOfSize好看一点

 

6.自定义导航的返回按钮的title,不能直接设置self.navigationItem.backButtonItem.title,参照网上(stack overflow)有效的方法为:

UIBarButtonItem *newBackButton = [[UIBarButtonItem alloc] initWithTitle: @"自定义的标题" style: UIBarButtonItemStyleBordered target: self action: @selector(backToPre:)];
	
	self.navigationItem.leftBarButtonItem = newBackButton;
	
	[newBackButton release];
 

只能是leftBarButtonItem,还得设IBAction

-(IBAction)backToPre:(id)sender{
    [self.navigationController popViewControllerAnimated:YES];
    [self.navigationController pushViewController:self.navigationController.parentViewController animated:YES];
}
 

你可能感兴趣的:(ios,PHP,浏览器,Blog,资讯)