在sb中绑定了一个IBOutletCollection后,根据索引获取元素发现和自己拖线时的顺序不同,有时又会根据顺序,不知道是xcode的bug还是本身就是无序的。在使用的时候直接排序:- 
(void)viewDidLoad{ [super viewDidLoad]; // Order the l...
                            
                            
                                分类:
其他好文   时间:
2014-06-02 09:27:48   
                                阅读次数:
306
                             
                    
                        
                            
                            
                                概述
不浪费内存:当 Hibernate 从数据库中加载 Customer 对象时, 如果同时加载所有关联的 Order 对象, 而程序实际上仅仅需要访问 Customer 对象, 那么这些关联的 Order 对象就白白浪费了许多内存.
更高的查询效率:发送尽可能少的 SQL 语句
类级别的检索策略
类级别可选的检索策略包括立即检索和延迟检索, 默认...
                            
                            
                                分类:
系统相关   时间:
2014-06-02 04:48:43   
                                阅读次数:
368
                             
                    
                        
                            
                            
                                如果你在你的模板文件夹中有很多PSD HTML模板,那么用接下来这个htaccess文件可以保护限制访问:
文件D:\WebSite\ZBPHP.COM\www\Tpl\.htaccess 全部源码如下:
Order Allow,Deny
Deny from all...
                            
                            
                                分类:
数据库   时间:
2014-06-01 17:55:22   
                                阅读次数:
460
                             
                    
                        
                            
                            
                                You are given two linked lists representing two 
non-negative numbers. The digits are stored in reverse order and each of their 
nodes contain a single ...
                            
                            
                                分类:
其他好文   时间:
2014-06-01 17:05:44   
                                阅读次数:
296
                             
                    
                        
                            
                            
                                在领域模型中, 类与类之间最普遍的关系就是关联关系. 
在 UML 中, 关联是有方向的. 
以 Customer 和 Order 为例: 一个用户能发出多个订单, 而一个订单只能属于一个客户. 从 Order 到 Customer 的关联是多对一关联; 而从 Customer 到 Order 是一对多关联
单向关联
双向关联
单向 n-1
单向 n-1...
                            
                            
                                分类:
系统相关   时间:
2014-06-01 15:55:08   
                                阅读次数:
434
                             
                    
                        
                            
                            
                                双向 1-n 与 双向 n-1 是完全相同的两种情形双向 1-n 需要在 1 的一端可以访问 n 的一端, 反之依然.域模型:从 Order 到 Customer 的多对一双向关联需要在Order 类中定义一个 Customer 属性, 而在 Customer 类中需定义存放 Order 对象的集合属性
关系数据模型:ORDERS 表中的 CUSTOMER_ID 参照 CUSTOMER 表的...
                            
                            
                                分类:
系统相关   时间:
2014-06-01 15:45:52   
                                阅读次数:
397
                             
                    
                        
                            
                            
                                Tabs are presented in most-recently-used order, similar to Alt+Tab on various operating systems...
                            
                            
                                分类:
其他好文   时间:
2014-06-01 15:45:12   
                                阅读次数:
242
                             
                    
                        
                            
                            
                                【题目】
Given a string containing only digits, restore it by returning all possible valid IP address combinations.
For example:
Given "25525511135",
return ["255.255.11.135", "255.255.111.35"]. (Order does not matter)
【题意】
给定一个字符串,恢复并返回所有符合条件的IP串
【思路】...
                            
                            
                                分类:
其他好文   时间:
2014-06-01 13:01:56   
                                阅读次数:
295
                             
                    
                        
                            
                            
                                Remove ElementGiven an array and a value, 
remove all instances of that value in place and return the new length.The order 
of elements can be changed. ...
                            
                            
                                分类:
其他好文   时间:
2014-06-01 12:29:11   
                                阅读次数:
190
                             
                    
                        
                            
                            
                                【题目】
Given a collection of integers that might contain duplicates, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.
The solution set must not contain duplicate subsets.
For example,
If S = [1,2,2], a solution ...
                            
                            
                                分类:
其他好文   时间:
2014-06-01 08:51:06   
                                阅读次数:
292