1

我想知道内部选择器部分两侧的深灰色框架的宽度以及组件之间分隔符的宽度。这将是默认设置(例如,.xib 中显示的内容)。或者,如何以编程方式找到这些值。谢谢

为了澄清,我正在寻找这些值的“建议最小值”可能是什么。我将我的 UIPickerView 放在一个弹出窗口中,并且 UIPickerView 的宽度超过 320 像素(这是 .xib 作为“默认值”给出的)。我想知道这些值,以便我可以将它们添加到弹出框的宽度,以确保它不会切断 UIPickerView 右侧的组件。

4

1 回答 1

1

好吧,这可能有点棘手,因为 Picker 可以有动态数量的组件。因此,为了找到宽度,您必须考虑组件的数量。这可以这样做:

        NSInteger n = picker.numberOfComponents;        

        const CGFloat separatorWidth = 8.0f;
        const CGFloat sectionExceedWidth = -2.0f;
        CGFloat totalWidth = picker.bounds.size.width;
        CGFloat panesWidth = totalWidth - separatorWidth * (n - 1);
        for (NSInteger i = 0; i < n; i++) {
            CGFloat sectionWidth = [picker rowSizeForComponent:i].width + sectionExceedWidth;
            panesWidth -= sectionWidth;
        }
        CGFloat leftPaneWidth = ceilf(panesWidth * 0.5f);
        CGFloat rightPaneWidth = panesWidth - leftPaneWidth;
        CGFloat totalHeight = picker.bounds.size.height;
        CGRect totalRect = CGRectMake(0, 0, totalWidth, totalHeight);

找到左右窗格宽度并且分隔符大小是静态的。

这是从这里拉出来的。

于 2012-07-16T17:44:34.140 回答