当前位置: 编程技术>移动开发
本页文章导读:
▪Xcode 工程资料打开不出来, cannot be opened because the project file cannot be parsed Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.svn更新代码后,打开xcode工程文件,会出现 xxx..xcodeproj cannot be opened because the project file cannot be parsed.
因为.xcodeproj.........
▪ UILabel、UITextView自适应失去高度 UILabel、UITextView自适应得到高度
在iOS中,经常遇到需要根据字符串的内容动态指定UILabel,UITextView,UITableViewCell等的高度的情况,这个时候就需要动态的计算字符串内容的高度,下面是计算的.........
▪ library修改后务须重新烧些fw,否则不起作用 library修改后必须重新烧些fw,否则不起作用library修改后必须重新烧些fw,否则不起作用。
今天一天的代价。 ......
[1]Xcode 工程资料打开不出来, cannot be opened because the project file cannot be parsed
来源: 互联网 发布时间: 2014-02-18
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
解决方法:1.对.xcodeproj 文件右键,显示包内容
svn更新代码后,打开xcode工程文件,会出现 xxx..xcodeproj cannot be opened because the project file cannot be parsed.
因为.xcodeproj工程文件冲突了,然后还是会强制更新,内部文件出现了冲突,所以解析不了文件。
会出现这样的冲突消息
<<<<<<< .mine 9ADAAC6A15DCEF6A0019ACA8 .... in Resources */, ======= 52FD7F3D15DCEAEF009E9322 ... in Resources */, >>>>>>> .r269
解决方法:1.对.xcodeproj 文件右键,显示包内容
2.双击打开 project.pbxproj 文件
3.找到以上类似的冲突信息(可以用commad + f 搜索)
4.删除 <<<<<<<,======,>>>>>>这些行
5.保存,退出
6.重新打开.xcodeproj文件即可
[2] UILabel、UITextView自适应失去高度
来源: 互联网 发布时间: 2014-02-18
UILabel、UITextView自适应得到高度
/**
@method 获取指定宽度情况ixa,字符串value的高度
@param value 待计算的字符串
@param fontSize 字体的大小
@param andWidth 限制字符串显示区域的宽度
@result float 返回的高度
*/
- (float) heightForString:(NSString *)value fontSize:(float)fontSize andWidth:(float)width
{
CGSize sizeToFit = [value sizeWithFont:[UIFont systemFontOfSize:fontSize] constrainedToSize:CGSizeMake(width, CGFLOAT_MAX) lineBreakMode:UILineBreakModeWordWrap];//此处的换行类型(lineBreakMode)可根据自己的实际情况进行设置
return sizeToFit.height;
}
在iOS中,经常遇到需要根据字符串的内容动态指定UILabel,UITextView,UITableViewCell等的高度的情况,这个时候就需要动态的计算字符串内容的高度,下面是计算的方法:
[cpp] view
plaincopy
前不久QA报了个文字显示不全的bug,我看了下代码,发现是计算高度出了问题。之前的同事在UITableViewCell中使用了UITextView,但是计算高度时使用了和UILabel相同的的方法。
其实UITextView在上下左右分别有一个8px的padding,当使用[NSString sizeWithFont:constrainedToSize:lineBreakMode:]时,需要将UITextView.contentSize.width减去16像素(左右的padding 2 x 8px)。同时返回的高度中再加上16像素(上下的padding),这样得到的才是UITextView真正适应内容的高度。
示例代码如下:
+ (float) heightForTextView: (UITextView *)textView WithText: (NSString *) strText{ float fPadding = 16.0; // 8.0px x 2 CGSize constraint = CGSizeMake(textView.contentSize.width - fPadding, CGFLOAT_MAX); CGSize size = [strText sizeWithFont: textView.font constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap]; float fHeight = size.height + 16.0; return fHeight; }
[3] library修改后务须重新烧些fw,否则不起作用
来源: 互联网 发布时间: 2014-02-18
library修改后必须重新烧些fw,否则不起作用
library修改后必须重新烧些fw,否则不起作用。
今天一天的代价。
最新技术文章: