菜鸟教程小白 发表于 2022-12-12 15:59:16

ios - 带有 UITextFields 的 UITableView 部分


                                            <p><p>我现在尝试了很多天来设置和获取部分单元格中 <code>UITextFields</code> 的输入。</p>

<p>在我的第一个 View 中,我去了一个 <code>UITextField</code>,我在其中说我想要有多少个部分,当按下按钮时,它会在 <code> 中为我提供那些部分(4 行) >UITableView</code>。
我现在的问题是,我没有得到每个 <code>UITextField</code> 的正确值。</p>

<p>例如:</p>

<ul>
<li>所有部分都有 4 个文本字段</li>
<li>在 textfields 中可以写 int 或 float</li>
<li>当我知道文本字段 1 和 2 中的 int 时,我将它们分开...</li>
</ul>

<p>这是我的代码....</p>

<pre><code>#import &#34;ViewController.h&#34;

@interface ViewController ()
{
    NSMutableArray *sectionsArray;
    NSMutableArray *rowsArray;
    NSMutableArray *textFieldArray;
}

@end

@implementation ViewController

- (void)viewDidLoad {
    ;    // Do any additional setup after loading the view, typically from a nib.

    [setDelegate:self];
    [setDataSource:self];

    sectionsArray = [init];
    rowsArray = [initWithObjects:@&#34;&#34;,@&#34;&#34;,@&#34;&#34;,@&#34;&#34;, nil];
    textFieldArray = [initWithObjects:@&#34;&#34;,@&#34;&#34;,@&#34;&#34;,@&#34;&#34;, nil];

}

- (void)viewWillAppear:(BOOL)animated
{
    ;
    ;
}


- (void)didReceiveMemoryWarning
{
    ;
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table View

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    int anzahl = ;//from first view...anzahl=quantity of sections

    //adds sections
    do {

      ];

    } while ( &lt; anzahl);

    return sectionsArray.count;
}


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return rowsArray.count;
}


-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = ;
    if (cell==nil) {
      cell = [ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@&#34;Cell&#34;];
      cell.selectionStyle = UITableViewCellSelectionStyleNone;

      UITextField *textField = [ initWithFrame:CGRectMake(10, 10, 300, 24)];
      textField.font = ;
      textField.textColor = ;

      textField.autoresizingMask = UIViewAutoresizingFlexibleWidth;
      textField.tag = 17;
      ;
      textField.delegate = self;
    }

    UITextField *textField = (UITextField *);

    textField.text = ;

    return cell;
}

#pragma mark - UITextFieldDelegate

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    ;
    return YES;
}

- (void)textFieldDidEndEditing:(UITextField *)textField {

    ;
}

@end
</code></pre>

<p>如何在正确的行中替换正确的 UITextField?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我建议你使用类似这样的数据源:</p>

<pre><code>NSMutableArray *tableViewData = ;

];
];
];
];
</code></pre>

<p>上面的代码表示<code>tableViewData</code>,包含4个数组,每个数组包含一个字典,将保存单个单元格的数据。在我的示例中,我刚刚使用了 <code>UITextField</code> 的单个键值对。</p>

<p>您可以随心所欲地动态创建它,并且您的委托(delegate)和数据源方法可以从中读取。而不是拥有 3 个单独的数组。</p>

<p>例如</p>

<pre><code>-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
   return ;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [ count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSDictionary *cellData = [ objectAtIndex:indexPath.row];

    // Create your cell and use the data stored in the dictionary
}
</code></pre>

<p>通过使用上述方法,您可以更新此字典,并在一个地方为您的所有 <code>UITableView</code> 维护一个状态,并保持代码的整洁和可读性。要访问任何 <code>UITextField</code>,只需在 <code>UITableView</code> 数据源和委托(delegate)方法的字典中找到它。</p>

<p>希望这会有所帮助!</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 带有 UITextFields 的 UITableView 部分,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19550348/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19550348/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 带有 UITextFields 的 UITableView 部分