2

カスタムセルを含むtableViewがあります。セル内のオブジェクトの 1 つは textField です。tableViewController は textFieldDelegate です。テーブルのデータソースはオブジェクトの配列です。ユーザーが textField をタップすると、tableViewController は textField デリゲート メソッドを実装し、この方法でデータ入力を制御します。
ユーザーが入力したデータを使用するために、tableViewController は以下を実装します。

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField
  {
    CGPoint point = [textField center];
    point = [self.tableView convertPoint:point fromView:textField];
    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:point];
... 
...
    return YES
  }

indexPath.row が常に間違っている理由を理解するのに 2 時間を費やしました。解決策: ストーリーボードで、textField をセルの上部に移動します。誰かが前にこのようなものを見たことがありますか? ありがとう。

4

2 に答える 2

6

-[UIView center]ビューのフレームの中心を返します。これは、ビューのスーパービューの座標系にあります。ただし-[UIView convertPoint:fromView:]、「元の」ビューの座標系でポイントが与えられることを期待しています。

同じポイントを与えて、正しいビューから変換するように指示します。

CGPoint point = [textField center];
point = [self.tableView convertPoint:point fromView:textField.superview];

または、ビューの座標系でポイントを指定し、ビューから変換するように指示します。

CGRect textFieldBounds = textField.bounds;
CGPoint point = CGPointMake(CGRectGetMidX(textFieldBounds), CGRectGetMidY(textFieldBounds));
point = [self.tableView convertPoint:point fromView:textField];
于 2013-06-28T06:22:58.237 に答える
1
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {

            NSString *text = [array_loaddata objectAtIndex:indexPath.row] ;
            UIFont *font = [UIFont systemFontOfSize:10];
            CGSize size = [(text ? text : @"") sizeWithFont:font constrainedToSize:CGSizeMake(220, 9999) lineBreakMode:NSLineBreakByWordWrapping];

            int count = size.height + 0;

            return count;

    }


    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;
    }

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

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        NSString *CellIdentifier =[NSString stringWithFormat:@"Cell%d",indexPath.row] ;

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];

            NSString *text = [array_loaddata objectAtIndex:indexPath.row] ;
            UIFont *font = [UIFont systemFontOfSize:10];
            CGSize size = [(text ? text : @"") sizeWithFont:font constrainedToSize:CGSizeMake(220, 9999) lineBreakMode:NSLineBreakByWordWrapping];
            UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(46, 0, size.width, size.height)];
            label.numberOfLines = 0;
            label.textColor = [UIColor grayColor];
            label.lineBreakMode = NSLineBreakByWordWrapping;
            label.text = (text ? text : @"");
            label.font = font;
            label.backgroundColor = [UIColor clearColor];
            [cell.contentView addSubview:label];
            [label release];


        }
        return cell;
    }
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
link==http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/
        /*
    NSString *appurl =[NSString stringWithFormat:@"xx"];
    appurl = [appurl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:appurl]];
    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse: nil error: nil ];
    NSString  *returnString = [[NSString alloc] initWithData:returnData encoding: NSUTF8StringEncoding];
*/

    }
于 2013-06-28T07:41:31.863 に答える