05-视图/视图控制器/导航控制器/列表视图
edward0004
这个作者很懒,什么都没留下…
展开
-
使用UIActionSheet 弹出UIDatePicker
-(IBAction)SelectValue:(id)sender { NSString *title = UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation) ? @"\n\n\n\n\n\n\n\n\n" : @"\n\n\n\n\n\n\n\n\n\n\n\n" ; UIActi原创 2012-02-13 20:48:23 · 2705 阅读 · 0 评论 -
iphone利用线程实现数据的加载,并展示在table列表中
在之前iphone利用xml传递 数据,展示载Table界面中,介绍了利用xml加载数据,并且分析树形结构,最后把数据展示在table列表中。下面详细介绍一下怎么动态加载数据,最后添加到列表中。实现的效果如下:实现的过程是修改两个table 的controller类,修改方法如下:#import @interface WelcomePavilionViewControlle转载 2012-02-13 20:50:42 · 438 阅读 · 0 评论 -
showing activity indicator in Table cells
ollowing are two ways to display UIActivityIndicatorViews in a cell of a table view (UITableView). The first will add a spinner as an accessory view, which will display the spinner on the right of the转载 2012-02-14 14:01:58 · 702 阅读 · 0 评论 -
iphone开发资源汇总
如何用Facebook graphic api上传视频:http://developers.facebook.com/blog/post/532/Keychain保存数据封装:https://github.com/carlbrown/PDKeychainBindingsController对焦功能的实现:http://www.clingmarks.com/?p=612自定义圆角Sw转载 2012-02-14 14:10:09 · 365 阅读 · 0 评论 -
CORE ANIMATION的学习备忘录(第一天)
研究Core Animation已经有段时间了,关于Core Animation,网上没什么好的介绍。苹果网站上有篇专门的总结性介绍,但是似乎原理性的东西不多,看得人云山雾罩,感觉,写那篇东西的人,其实是假设读的人了解界面动画技术的原理的。今天有点别的事情要使用Linux,忘掉了ssh的密码,没办法重新设ssh,结果怎么也想不起来怎么设ssh远程登陆了,没办法又到网上查了一遍,太浪费时间了,痛感忘转载 2012-02-16 14:49:22 · 384 阅读 · 0 评论 -
用代码实现截图
UIImage *imagePhoto; UIGraphicsBeginImageContext(mapview.bounds.size);//textview是需要截图的对象 [mapview.layerrenderInContext:UIGraphicsGetCurrentContext()]; imagePhoto = U原创 2012-06-18 13:58:06 · 501 阅读 · 0 评论 -
将网络中的图片存为NSData并保存到sqlite的BLOB字段中
开发心得.首先是获取网络中的图片, 将图片从网络中以NSData的形式读取到本地的代码很简单, 只有两句话就可以了. NSString *url = @"http://www.163.com/a.jpg"; NSData* imageData = [[NSData alloc]initWithContentsOfURL:[NSURL URLWithS转载 2012-06-21 15:07:08 · 637 阅读 · 0 评论 -
从UIImage转换到NSData类型
//sdk中提供了方法可以直接调用 UIImage *img = [UIImage imageNamed:@"some.png"]; NSData *dataObj = UIImageJPEGRepresentation(img, 1.0); //下面是sdk中UIImage.h头文件中的内容 UIKIT_EXTERN NSData *UIImagePNGRepre转载 2012-06-25 16:04:40 · 1036 阅读 · 0 评论 -
iPhone/iOS图片读取、保存、绘制
一.读取图片1.从资源(resource)读取[cpp] view plaincopyprint?UIImage* image=[UIImage imageNamed:@"1.jpg"]; 2.从网络读取[cpp] view plaincopyprint?NSURL转载 2012-06-25 16:14:20 · 1062 阅读 · 0 评论