按类别查询搜索结果
关于关键词 的检测结果,共 105
原来是泽镜啊 | 2018-06-28 23:30:06 | 阅读(1610) | 评论(0)
如何提升开发技术的方法很多,比如专注,刻苦,热情,兴趣等,不过我这里不会提这些,下面想说的是我觉得能够指数级提升的窍门和一些自己在求索路上的一些体会,也算是一个阶段性的总结吧。给大家做个分享,希望对需要的同学有用。1,看到这个标题一般人的反应就是觉得自己的代码和那些高大上的开源库比起来相形见绌...【阅读全文】
Gian00 | 2018-06-04 14:21:58 | 阅读(530) | 评论(0)
得力数据恢复软件会扫描驱动器,并显示能从被扫描的驱动器恢复的文件的列表。能恢复格式化或者丢失的驱动器,能恢复逻辑文件系统严重损坏的驱动器,甚至能重建丢失的RAID!电子邮件恢复模块可恢复已经删除的电子邮件。...【阅读全文】
zhubingke | 2017-03-09 11:39:24 | 阅读(960) | 评论(0)
转:http://blog.csdn.net/alen_xiaoxin/article/details/54694051语法docker run [OPTIONS] IMAGE [COMMAND] [ARG...]  -d: 后台运行容器,并返回容器ID;-t: 为容器重新分配一个伪输入终端,通常与 -i 同时使用;...【阅读全文】
jeffasdasd | 2015-11-20 14:51:43 | 阅读(7520) | 评论(0)
iOS boundingRectWithSize NSStringDrawingUsesLineFragmentOrigin 参数详解enum { NSStringDrawingTruncatesLastVisibleLine = 1 << 5, NSStringDrawingUsesLineFragmentOrigin = 1 << 0, NSStringDrawingUsesFontLeading = 1 << 1, NSStringDrawingUsesDeviceMetrics = 1 << 3, }; typedef NSInteger NSStringDrawingOpt...【阅读全文】
jeffasdasd | 2015-11-17 19:12:06 | 阅读(1010) | 评论(0)
使用CocoaPods来安装并管理JSONKit库了,确保命令行当前路径是在CocoaPodsTest目录下,运行如下命令。$ pod install  安装完成后会提示如下信息,并且我们的工程目录下会多出一个.xcworkspace结尾的文件,命令行信息绿色部分提醒我们“从此使用CocoaPodsTest.xcworkspace来打...【阅读全文】
jeffasdasd | 2015-11-16 17:35:43 | 阅读(920) | 评论(0)
http://www.cnblogs.com/xiaobaizhu/archive/2013/05/03/3056547.html排序NSArray里的数据(数字、字符串) NSArray *originalArray = @[@"1",@"21",@"12",@"11",@"0"]; //block比较方法,数组中可以是NSInteger,NSString(需要转换) NSComparator finderSort = ^(id string1,id string2){ if...【阅读全文】
jeffasdasd | 2015-11-15 18:24:27 | 阅读(880) | 评论(0)
http://www.tanhao.me/pieces/1019.html/CGImageSource是对图像数据读取任务的抽象,通过它可以获得图像对象、缩略图、图像的属性(包括Exif信息)。1.创建CGImageSourceRef1 2 NSString *imagePath = [[NSBundle bundleForClass:self.class] pathForImageResource:@"test.png...【阅读全文】
jeffasdasd | 2015-10-20 18:26:43 | 阅读(770) | 评论(0)
NSSortDescriptor使用注意以及直接排序字符串数组http://blog.sina.com.cn/s/blog_8c87ba3b0101phr5.htmlNSSortDescriptor 指定用于对象数组排序的对象的属性。如果是Employee对象需要按照name来排序,就生成下面的descriptorNSSortDescriptor *descriptor = [NSSortDescriptor sortDescriptorWithKe...【阅读全文】
jeffasdasd | 2015-10-19 23:55:35 | 阅读(730) | 评论(0)
http://www.cnblogs.com/kuku/archive/2012/08/19/2646063.html<p style="margin:10px auto;font-size:14px;white-space:normal;color:#333333;font-family:Arial;line-height:26px;background-color:#FFFFFF;">IOS项目中会用到对通讯录的联系人或是会员按姓名为关键字排序,因为NSArray并不直接支持对汉字的排序,这就...【阅读全文】
jeffasdasd | 2015-10-19 18:00:50 | 阅读(720) | 评论(0)
GDataXMLNode
【阅读全文】
jeffasdasd | 2015-10-10 11:24:20 | 阅读(700) | 评论(0)
<div class="multicntwrap" style="font-family:Arial;font-size:14px;line-height:26px;white-space:normal;"><div class="multicnt"><h3 class="title pre fs1" style="margin:0px;padding:0px;"><span style="font-size:12px;"><a href="http://blog.csdn.net/guozh/article/details/8469111" style="color:#33...【阅读全文】
jeffasdasd | 2015-10-09 23:23:38 | 阅读(510) | 评论(0)
<a href="http://blog.csdn.net/shuixin536/article/details/7762990" style="color:#000000;text-decoration:none;font-family:'Microsoft YaHei';font-size:20px;line-height:30px;white-space:normal;">Xcode如何查看内存中的数据</a><br />http://blog.csdn.net/shuixin536/article/details/7762990<br /><span style...【阅读全文】
fishmwei | 2015-10-09 15:33:31 | 阅读(10060) | 评论(0)
+(NSInteger)getDaysFrom:(NSDate *)serverDate To:(NSDate *)endDate<br />{<br />&nbsp;&nbsp;&nbsp; NSCalendar *gregorian = [[NSCalendar alloc]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...【阅读全文】
jeffasdasd | 2015-09-28 19:35:34 | 阅读(970) | 评论(0)
http://www.bubuko.com/infodetail-958032.html<br />IOS BLE4.0蓝牙和外设连接和收发数据的流程<br /><p style="font-family:'Microsoft YaHei';font-size:14px;color:#3F3F3F;line-height:30px;white-space:normal;background-color:#FFFFFF;">前言:</p><p style="font-family:'Microsoft YaHei';font-size:14px;c...【阅读全文】
jeffasdasd | 2015-09-24 18:58:56 | 阅读(700) | 评论(0)
http://www.cnblogs.com/smileEvday/p/iOS_MVC.html<br /><a href="http://www.cnblogs.com/smileEvday/p/iOS_MVC.html" target="_blank" style="font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;font-size:13px;line-height:20.7999992370605px;text-align:center;color:#075DB3;"><strong><span style="line...【阅读全文】
lijiachao2008 | 2015-09-22 15:58:00 | 阅读(1260) | 评论(0)
<div style="color:#464646;font-family:simsun;font-size:14px;line-height:21px;white-space:normal;background-color:#C64E4D;"><span style="background-color:#FFFFFF;">IOS提供了一个轻量级的快速数据存储方式:NSUserDefaults;</span></div><div style="color:#464646;font-family:simsun;font-size:14px;line-...【阅读全文】
jeffasdasd | 2015-09-18 07:25:56 | 阅读(600) | 评论(0)
<a href="http://blog.csdn.net/a351945755/article/details/8489630" style="color:#000000;text-decoration:none;font-family:'Microsoft YaHei';font-size:20px;line-height:30px;white-space:normal;background-color:#FFFFFF;">第三方苹果开发库之ASIHTTPRequest(翻译版)</a><br />http://blog.csdn.net/a351945755...【阅读全文】
jeffasdasd | 2015-09-18 07:06:19 | 阅读(1160) | 评论(0)
<span style="font-family:'Helvetica Neue', Helvetica, STheiti, 微软雅黑, 黑体, Arial, Tahoma, sans-serif, serif;font-size:14px;white-space:normal;background-color:#FFFFFF;">http://www.cocoachina.com/bbs/read.php?tid=227966<br />最近看项目,有一些疑问:</span><br style="outline:none;font-family:'Hel...【阅读全文】
jeffasdasd | 2015-09-09 13:36:46 | 阅读(860) | 评论(0)

开篇:要想理解Block和委托,最快的方法是...【阅读全文】
fishmwei | 2015-09-08 14:48:07 | 阅读(800) | 评论(0)
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{<br />&nbsp; &nbsp; NSInteger maxLength = 200;<br />&nbsp; &nbsp;&nbsp;<br />&nbsp; &nbsp;&nbsp;<br />&nbsp; &nbsp; NSString *appendStr = [textView.text stringByReplacingCharactersInRa...【阅读全文】