摘要: 1. 使用一个UIImageView实例做子视图,并且放最后面UIImageView *customBackgournd = [UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.jpg"]];self.backgrou... 阅读全文
posted @ 2014-08-13 23:02 jack_ou 阅读(11039) 评论(0) 推荐(0)
摘要: 在java中要想实现多线程,有两种手段,一种是继续Thread类,另外一种是实现Runable接口。对于直接继承Thread的类来说,代码大致框架是:123456789101112class类名 extendsThread{方法1;方法2;…publicvoidrun(){// other code... 阅读全文
posted @ 2014-08-13 13:22 jack_ou 阅读(336) 评论(0) 推荐(0)