上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页
摘要: 1.frame是该view相对于父view的坐标系中的位置和大小。(参照点是父view的坐标系)2、bounds是该view相对于自己的坐标。(参照点是本身坐标系统)3、uiresponder<-----uiview<-----uiwindow、uicontrol 阅读全文
posted @ 2013-07-19 09:30 xiaoxiaoxigua 阅读(204) 评论(0) 推荐(0)
摘要: briefs V1.0.5 download @ here:http://soft.macx.cn/5442.htm密码:www.macx.cn 阅读全文
posted @ 2013-07-16 11:33 xiaoxiaoxigua 阅读(196) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/whaomian/article/details/7435656 阅读全文
posted @ 2013-07-16 10:40 xiaoxiaoxigua 阅读(123) 评论(0) 推荐(0)
摘要: 客户端详细介绍客户端+服务端详细介绍 阅读全文
posted @ 2013-07-12 10:46 xiaoxiaoxigua 阅读(211) 评论(0) 推荐(0)
摘要: 这是转载别人的写的很好,(转:崔永秀)把这几天学习到的关于ssl和https协议的内容在这里分享一下,适合一些像我一样的网络协议初学者。ssl协议的起源和历史我就不再多说了,就是那个Netscape 网景公司开发的,它的作用主要是提供了一种安全传输方式,我们知道网上有很多的时候需要我们去输入用户名和密码,那么假设我们自己的电脑防病毒还可以,但是用户名和密码肯定还是要通过互联网来传到服务器那里,这个步骤就要经过很多的路由等,如果明文传输,就可以在你的局域网内或者通过的路由中监听,窃取你的用户名密码。SSL协议位于TCP/IP协议与各种应用层协议之间。当我们打开一个https的网页时,步骤如下:1 阅读全文
posted @ 2013-07-10 17:12 xiaoxiaoxigua 阅读(13353) 评论(0) 推荐(1)
摘要: 1、屏幕尺寸568×2/320×2 需要一张568h@2x.png的图片。2、iOS5不支持udid,用uuid替代,取得uuid方法:-(NSString*) uuid { CFUUIDRef puuid = CFUUIDCreate( nil ); CFStringRef uuidString = CFUUIDCreateString( nil, puuid ); NSString * result = (NSString *)CFStringCreateCopy( NULL, uuidString); CFRelease(puuid); ... 阅读全文
posted @ 2013-07-08 15:38 xiaoxiaoxigua 阅读(414) 评论(0) 推荐(0)
摘要: -(void)setImageWithURL:(NSURL *) url{ //加载网络图片的时候应该开启一个线程,不然加载的时候会阻塞 [self performSelectorInBackground:@selector(loadData:) withObject:url]; }-(void)loadData:(NSURL *) url{ @autoreleasepool { NSData *data = [NSData dataWithContentsOfURL:url]; UIImage *image = [U... 阅读全文
posted @ 2013-07-02 16:44 xiaoxiaoxigua 阅读(302) 评论(0) 推荐(0)
摘要: 原文地址:[置顶]ios-获取系统相簿里边的所有照片作者:胰诵倭恐背#import-(void)getImgs{dispatch_async(dispatch_get_main_queue(), ^{NSAutoreleasePool*pool = [[NSAutoreleasePoolalloc]init];ALAssetsLibraryAccessFailureBlockfailureblock = ^(NSError*myerror){NSLog(@"相册访问失败=%@", [myerrorlocalizedDescription]);if([myerror.loca 阅读全文
posted @ 2013-07-02 16:35 xiaoxiaoxigua 阅读(183) 评论(0) 推荐(0)
摘要: http://blog.163.com/chester_lp/blog/#m=0 阅读全文
posted @ 2013-07-02 14:42 xiaoxiaoxigua 阅读(134) 评论(0) 推荐(0)
摘要: self.page=[[UIPageControlalloc]initWithFrame:CGRectMake(0, 0, 100, 20)]; self.page.backgroundColor=[UIColorclearColor]; self.page.numberOfPages=3; UIWindow *mi_statusbar=[[UIWindow alloc]initWithFrame:CGRectMake(0, 0, 100, 20)]; mi_statusbar.center=CGPointMake(160, 10); [mi_statusbar addSu... 阅读全文
posted @ 2013-06-28 13:59 xiaoxiaoxigua 阅读(216) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页