@implementation NSURLRequest (NSURLRequestWithIgnoreSSL)+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host{ return YES;}@end ...
分类:
移动开发 时间:
2017-12-16 13:13:28
阅读次数:
168
1、圆角使用UIImageView装载一个圆角图片来处理。 @implementation UIImage (RoundedCorner) - (UIImage *)imageWithRoundedCornersAndSize:(CGSize)sizeToFit andCornerRadius:(C ...
分类:
其他好文 时间:
2017-12-14 13:19:04
阅读次数:
195
定义 桥梁结构(Bridge Pattern)也称桥接模式,是一种简单但不常使用的设计模式。 英文原话是:Decouple an abstraction from its implementation so that the two can vary independently.意思是:将抽象和实现 ...
分类:
其他好文 时间:
2017-12-14 03:48:27
阅读次数:
95
ArrayList是java集合框架中List体系下List接口的一个实现类。 特点: Resizable(大小可调,尺寸可变)-array (Resizable-array implementation of the <tt>List</tt> interface.This class provi ...
分类:
其他好文 时间:
2017-12-11 00:55:19
阅读次数:
196
Provide an implementation of the following interface: public interface Powers extends Iterator { /* Returns the next integer a in the arithmetic seque... ...
分类:
其他好文 时间:
2017-12-10 11:13:54
阅读次数:
160
内容介绍TheApache ActiveMQ message broker is an open source implementation ofthe Java Message Service spec. It makes for a reliable hub in anymessage-orie ...
分类:
其他好文 时间:
2017-12-03 12:54:49
阅读次数:
232
public class TextFile implements Iterable{ private BufferedReader br; public TextFile(String fileName) throws FileNotFoundException { br = new Buffere... ...
分类:
其他好文 时间:
2017-12-01 23:29:10
阅读次数:
214
客户需求 vs 最终产品 requirements vs. implementation 程序员的一天 The Programmers life 寂寞的时候干什么? 写程序写程序写程序 失恋的时候干什么? 写程序写程序写程序 发骚的时候干什么? 写程序写程序写程序 剩下的时候干什么? 调程序调程序调 ...
分类:
其他好文 时间:
2017-11-20 17:50:10
阅读次数:
134
First, let me reiterate the main points in Alex’s post: The default implementation is useless (it’s hard to think of one which wouldn’t be, but yeah) ...
分类:
其他好文 时间:
2017-11-19 16:04:53
阅读次数:
131
解决Spring框架的Dao层改用@Repository注解,无法使用JdbcDaoSupport的问题 Alternatively, create an own implementation of JdbcDaoSupport class, and do whatever you want. Di ...
分类:
数据库 时间:
2017-11-18 19:58:12
阅读次数:
319