我正在尝试查找一串文本的物理像素大小。然后,我想使用此大小来设置roundRectButton的长度。然而,我用来获取长度的方法返回CGSize。如何将其转换为CGFloat?或者,也许有人可以建议一种完全不同的方式来实现这一目标。
这是我目前的代码:
// Note: tagAsString is a string of Tag names (Example "tag1, tag2, tag3")
// Note: Code to set this is not relevant to the question.
// get length of tagsAsString.
CGSize tagStringLength = [tagsAsString sizeWithFont:[UIFont fontWithName:@"Helvetica-Bold" size:13.0] forWidth:100.0 lineBreakMode:UILineBreakModeTailTruncation];
// size button to fit length of string
// Note: spotTags is a roundRectButton
cell.spotTags.frame = CGRectMake(96, 33, tagStringLength, 25);
// set the title of the roundRectButton to the tag string
[cell.spotTags setTitle:tagsAsString forState:UIControlStateNormal];
正如您在上面所看到的,我正在使用CGRectMake方法,该方法将4个参数作为CGFloat。然而,我正在传入一个导致运行时错误的CGSize。
答案 0 :(得分:20)
CGSize
是一个结构:
struct CGSize {
CGFloat width;
CGFloat height;
};
typedef struct CGSize CGSize;
只需使用tagStringLength.width
即可获得您关注的号码。
我非常确定您应该收到编译时错误,而不是运行时错误。
答案 1 :(得分:5)
CGSize
是两个元素的结构:CGFloat
宽度和CGFloat
高度。
示例代码:
CGSize size;
CGFLoat width = size.width;
CGFLoat height = size.height;