ios笔记

来源:互联网 发布:淘宝我的信誉在哪里看 编辑:程序博客网 时间:2024/05/16 10:15

读取plist文件

NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"testData" ofType:@"plist"];    NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];    _tableItems = [data objectForKey:@"data"];


动态调整uilabel高度

io7之后的新函数

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];    paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;    NSDictionary *attributes = @{NSFontAttributeName:descriptionLabel.font, NSParagraphStyleAttributeName:paragraphStyle.copy};    CGSize descriptionLabelSize = [descriptionLabel.text boundingRectWithSize:descriptionLabel.frame.size options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:nil].size;    descriptionLabel.frame = CGRectMake(8, CGRectGetMaxY(nameLabel.frame) + 3 + descriptionLabelSize.height, kTABLEVIEW_WIDTH, descriptionLabelSize.height);


0 0