0

我下载了Collection View 示例,并将 ImageView 替换为文本字段。我想让文本字段和 UICollectionViewCell 一样大(这是一个正方形)。但是文本字段的形状没有改变。

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"Cell";

    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

    // height and width in the parent cell 
    double height = cell.frame.size.height;
    double width = cell.frame.size.width;

    // get the child textfield
    UITextField *textField = (UITextField *)[cell viewWithTag:100];

    // make the textfield as big as the cell
    CGRect frame = CGRectMake(0, 0, width, height);
    textField.frame =frame;
    textField.text = @"testing";

    return cell;
}

故事板和模拟器

4

4 回答 4

0

我找到了这个问题的根本原因。根本原因是自动布局,它会在运行时调整单元格和文本字段之间的宽度、高度和空间。一旦我删除了自动布局,代码就可以正常工作了......而且边框样式不是问题。

我正在寻找另一种方法来解决这个问题。

于 2013-03-15T10:19:24.887 回答
0

您可以通过更改 UITextField 的边框样式来做到这一点。

请参阅此 Stackoverflow 帖子:如何设置 UITextfield 的边框样式

于 2013-03-15T09:50:03.323 回答
0

试试这个..

NSInteger myCustomHeight = 237;
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, 200, myCustomHeight)];
于 2013-03-15T10:33:56.733 回答
0

您是否在 XCode Designer 中将 UITextfield 的 Tag 设置为 100?在调用代码之前,您必须将 Tag 设置为 100,以确保找到 UITextfield。

没有必要更改边框样式,因为您可以对每个边框样式进行更改......我已经做到了......

转到 XCode Designer 中的 cellItem Nib,选择 UITextField 并在正确的属性中,将标签更改为 100 ...这将解决它

于 2013-03-15T09:55:58.623 回答