iphone
文章平均质量分 65
lone_boy
这个作者很懒,什么都没留下…
展开
-
iphone Android JS的使用
android 与iphone都可以在webview控件里面潜入JS代码。但由于两种JS添加方式的不同。Android 的JS添加,需要添加到指定的对象中去.如:webView.addJavascriptInterface(new Object() {原创 2011-10-17 11:43:00 · 966 阅读 · 0 评论 -
objective-c formate strings
翻译 2011-12-09 16:41:02 · 558 阅读 · 1 评论 -
uitable的交替背景色
注:uitable在 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath设定颜色,是无效的。正确设定颜色的位置是:- (void)tableView:(UITableView *)tableView willDisplayCe原创 2011-12-08 16:22:50 · 644 阅读 · 0 评论 -
iphone pdf 解析
iphonePDF 解析 #import @class PDFTestViewController;@interface PDFView : UIView { //这个类封装了PDF画图得所有信息 CGPDFDocumentRef pdf; //PDFDocument 中得一页 CGPDFPageRef page; //总共页数 int tot转载 2011-11-09 11:33:27 · 567 阅读 · 0 评论 -
取得用户的电话本
//取得用户的电话本 代码-(void)getUserAddressBook{ //reDic = {"7":"数码先锋","1":"最爱街拍"} //打开电话本数据库 ABAddressBookRef addressRef=ABAddressBookCreate(); //返回所有联系人到一个数组中 CFArrayRef personArray原创 2011-11-09 11:26:47 · 454 阅读 · 0 评论 -
iphone获取通讯录
这段代码示范如何读取iphone的Address book就透过AddressBook相关的SDK取出就行了 view plaincopy to clipboardprint?ABAddressBookRef addressBook = ABAddressBookCreate(); CFArrayRef allPeople = ABAddressBookC转载 2011-11-09 11:36:07 · 896 阅读 · 0 评论 -
iphone类型判断
判断页面上某一控件的类型: for (UIView *tmp_view in self.window.subviews) { if ([tmp_view isMemberOfClass:[bookEdit class]]) { return; } }原创 2011-11-09 11:35:46 · 693 阅读 · 0 评论 -
iphone杂集
一,修改状态栏: 1.加入[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];但此方法只是不显示状态条,状态条所占用的空间仍然存在。2.可以修改Info.plist文件,在info.plist文件中加入一条新键值,命名为:UIStatusBarHidden;选择Valuetype为Boolean,转载 2011-11-09 11:34:08 · 779 阅读 · 0 评论 -
制作一个简单的动画
12.制作一个简单的动画: - (IBAction)curlAction:(id)sender{//开始一个动画[UIView beginAnimations:nil context:NULL];//设置动画得时间间隔[UIView setAnimationDuration:kTransitionDuration]; //设置动画得旋转方式 [UIVie转载 2011-11-09 11:29:02 · 677 阅读 · 0 评论 -
两张图片的交换,以及放大缩小的动画
在IPhone SDK开发范例大全中,有很多的范例码下面这段范例码,示范了两张图片的交换,以及放大缩小的动画动画效果请参照下图 view plaincopy to clipboardprint?#import #define IMAGE_VIEW_1 100 #define IMAGE_VIEW_2 101转载 2011-11-09 11:35:25 · 740 阅读 · 0 评论 -
iphone uitable+长按事件
表格:可以使内容分层显示 #pragma mark -#pragma mark Table Delegate Methods - (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath表格:可以使内容的选择,现实两种动画效果原创 2011-11-09 11:35:01 · 753 阅读 · 0 评论 -
iphone 文件保存策略
文件保存策略:一般有三中方法:1,属性列表,2,对象归档,3,iphone的嵌入式数据库库(sqLite3) 1,属性列表 存储文件://获取文档目录,NSDocumentDirectory表示我们查找Documents目录的路径,NSUserDomainMask表示我们的搜索范围只能在我们的应用程序沙盒当中, NSArray *转载 2011-11-09 11:31:42 · 750 阅读 · 0 评论 -
demo for iphone
http://developer.apple.com/iphone/library/samplecode/Reachability/Reachability.zip http://developer.apple.com/iphone/library/samplecode/avTouch/avTouch.zip http://developer.apple.com/iphone/librar转载 2011-11-21 09:16:34 · 639 阅读 · 0 评论 -
object-c 拓展nsstring方法
添加文件"stringtest.h" #import @interface NSString(addprestr)-(NSString*)add_pre;@end 添加文件"stringtest.m"#import "stringtest.h"@implementation NSString(addprestr)-(NSString*)add_pre原创 2011-10-21 17:17:46 · 463 阅读 · 0 评论 -
respondsToSelector的妙用
respondsToSelector方法对不同ios版本有类似动态支持的功能例如在ios4.0以后中eagleView中新增了对 iphone4 Retina高清屏幕支持的成员变量scaleContent,在4.1sdk下可以直接使用self.scaleContent = 2,但是如果换用3.2sdk,这样编译马上就会报错,提示eagleView中没有这样的成员变量,这里报错也是自然,因为3.翻译 2011-10-21 16:58:59 · 2568 阅读 · 0 评论 -
iphone UIWEBVIEW JS回调交互
1. 一般调用将本地数据,封装,直接作为JS的返回值。如:获取软件的APPCode //获取APPCode NSArray *_plist_paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirector原创 2011-10-18 10:45:35 · 3452 阅读 · 0 评论 -
iphone数据库的增删改查
#import "DataBaseOperate.h"@implementation DataBaseOperate@synthesize databaseName;#pragma mark ##pragma mark DataBase Operate原创 2011-10-09 18:08:09 · 465 阅读 · 0 评论 -
Calendar formate string
转载 2011-12-12 10:24:25 · 636 阅读 · 1 评论