1

の動的な行を作成する助けがUITextfields必要です。自分でやろうとして成功しましたが、ほとんど失敗しました。

1〜13の行数を設定しUITextfields、左右に均等な間隔で均等に配置されたiPhoneフレーム幅の幅に収まるように作成したいと思います。

これが私がこれまでに行ったことです:

- (void) displayViews {
    // add scrollview
    htmlContainerScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0.0, 60.0, self.view.frame.size.width, 293.0)];
    NSInteger viewcount = [axisString integerValue];
    color = 200;

    for(int i = 0; i< viewcount; i++) {
        color = color + 20;
        NSLog(@"%f", color);
        CGFloat y = i * 91;
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, y,self.view.frame.size.width, 90.0)];
        view.backgroundColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:(1.0/i)];;
        [htmlContainerScrollView addSubview:view];

        int cutCount = [cutsString integerValue];
        int positions = (self.view.frame.size.width/cutCount);

        for (int i = 0; i < cutCount; i++) {
            //first one
            UITextField *cutField = [[UITextField alloc] initWithFrame:CGRectMake((positions*i)+(20/2), 25, 20, 20)];
            cutField.textColor = [UIColor colorWithRed:0/256.0 green:84/256.0 blue:129/256.0 alpha:1.0];
            cutField.font = [UIFont fontWithName:@"Helvetica-Bold" size:25];
            cutField.backgroundColor=[UIColor whiteColor];
            [view addSubview:cutField];
        }       
    }
    htmlContainerScrollView.contentSize = CGSizeMake(self.view.frame.size.width, 91 *viewcount);
    [self.view addSubview:htmlContainerScrollView];
}

私の最大の問題は、それらが均等に配置されていないことです。それらは常に左側にあります。

4

1 に答える 1