摘要:OSI七层模型 应用层 —— HTTP、FTP、SMTP等 表示层 —— SMB 会话层 —— sockets 传输层 —— TCP、UDP等 网络层 —— OSPF、IP 数据链路层 —— 以太网 物理层 —— 线路、无线电、光线 HTTP协议属于应用层协议,主要解决如何包装数据 TCP/IP协议
阅读全文
摘要:如果一个工程为MRC,其中要添加ARC的文件: 选择target -> build phases -> compile sources -> 单击ARC的文件将compiler flags设置为:-fobjc-arc 如果一个工程为ARC,其中要添加MRC的文件: 同样的路径,然后单击MRC的文件将
阅读全文
摘要://微信 - (IBAction)openWeiXin:(UIButton *)sender { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"weixin://"]]; } //微博 - (IBAction)op
阅读全文
摘要://强制横屏 - (UIInterfaceOrientationMask)supportedInterfaceOrientations{ return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandsc
阅读全文
摘要:[self.webView stringByEvaluatingJavaScriptFromString:@"divs = document.getElementsByTagName('这个地方写标签类型比如div header a');\ for(i = 0; i < divs.length; i++) {\ if (divs[i].className == '这个地方写class=后面的名字...
阅读全文
摘要:更新于2015.06.28 各大运营商对手机号码号段有增加,所以更新了一下手机号校验正则表达式。因为自己在做项目的时候,因为手机号段校验正则表达式没有更新,漏掉了一些用户。
阅读全文
摘要:做个记录,TFHpple老师让了解还没时间。 http://www.cocoachina.com/bbs/read.php?tid=258643
阅读全文
摘要:1.其它颜色 UIColor *color = [UIColor colorWithRed:a green:b blue:c alpha:d];//a,b,c,d 范围为0~1 2.白色 UIColor *myColor = [UIColor colorWithWhite:0.5 alpha:0.8
阅读全文