Sportica   Sportica
摘要: //最先进的是这个 返回一共有多少行!- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ NSLog(@"111"); tableView.contentInset = UIEdgeInsetsMake(0, 0, -144, 0); //AppDelegate为一个代理类。 AppDelegate *app = [[UIApplication sharedApplication]delegate]; int count = [app.... 阅读全文
posted @ 2012-08-10 16:45 qingjoin 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 这几个都是在ios程序中,经常会注意到的一些小细节,能否真正了解这些,对写ios程序也有很大的好处。frame 是UIView中表示此view的一个矩形面积,包括了view在它的superview中的一些几何上的标识。有起始坐标,也就是origin(CGPoint)和这个矩形面积的宽(width)和高(height)bounds 每个view,除了有对应它的superview的相关坐标外,它自己也有对应它自己的几何坐标,所以bounds就是标识它自己坐标关系的一个标识,它有和frame一样的属性,但在数值上会有些不同。center 是一个view的中心,默认是这个view对应superview 阅读全文
posted @ 2012-08-10 10:32 qingjoin 阅读(232) 评论(0) 推荐(0) 编辑
  Sportica