摘要:
用继承自UINavigationController与UITabbarController 创建类,将前者设置为RootViewController,出现了一个问题,navigetionController的title不显示,在controller里面怎么设置都不显示,原因是这个样子的: title 阅读全文
摘要:
1 import java.util.*; 2 class ReversibleArrayList extends ArrayList{ 3 public ReversibleArrayList(Collection c) {super(c);} 4 public Iterable reversed(){ 5 return new Iterable(){... 阅读全文
摘要:
1 import java.util.*; 2 3 public class AddingGroups { 4 5 public static void main(String[] args) { 6 7 Random rnd = new Random(10); 8 Map m = new HashMap(); 9 ... 阅读全文