摘要: //创建 UILabel UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(20, 40, 280, 80)]; //设置背景色 label1.backgroundColor = [UIColor grayColor]; //设置tag label1.tag = 91; //设置标签文本 label1.text = @"Hello world!"; //设置标签文本字体和字体大小 label1.font = [UIFont fontWithName:@"Arial... 阅读全文
posted @ 2012-07-04 17:03 Revey.Jay 阅读(284) 评论(0) 推荐(0) 编辑
摘要: //这里创建一个圆角矩形的按钮 UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect]; // 能够定义的button类型有以下6种, // typedef enum { // UIButtonTypeCustom = 0, 自定义风格 // UIButtonTypeRoundedRect, 圆角矩形 // UIButtonTypeDetailDisclosure, 蓝... 阅读全文
posted @ 2012-07-04 16:49 Revey.Jay 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 当调用ASIHTTPRequest 发送GET请求时,发现请求了多次。原因在于使用GET时的默认行为是允许持久连接的,当网络不稳定,GET初次请求失败时,会重新发送请求。 阅读全文
posted @ 2012-07-04 13:52 Revey.Jay 阅读(813) 评论(0) 推荐(0) 编辑