摘要: 有些时候我们想让UIButton的title居左对齐,我们设置btn.textLabel.textAlignment = UITextAlignmentLeft是没有作用的,我们需要设置btn.contentHorizontalAlignment = UIControlContentHorizonAlignmentLeft;但是问题又出来,此时文字会紧贴到做边框,我们可以设置btn.contentEdgeInsets = UIEdgeInsetsMake(0,10,0,0);使文字距离做边框保持10个像素的距离。 阅读全文
posted @ 2012-07-31 11:20 翛尧 阅读(303) 评论(0) 推荐(0)
摘要: 下载文件之前获得文件大小[m_pASIHTTPRequest setDidReceiveResponseHeadersSelector:@selector(didReceiveResponseHeaders:)];- (void)didReceiveResponseHeaders:(ASIHTTPRequest *)request{NSLog(@"didReceiveResponseHeaders %@",[m_request.responseHeaders valueForKey:@"Content-Length"]);} 阅读全文
posted @ 2012-07-31 10:47 翛尧 阅读(137) 评论(0) 推荐(0)