需要帮助将字符串发送到另一个viewcontroller

时间:2013-08-26 09:41:15

标签: objective-c cocoa-touch

我的NSString在tableview中动态生成谁应该发送到另一个viewcontroller :(消息)

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];

LoanModel* loan = _feed.users[indexPath.row];

NSString* message = [NSString stringWithFormat:@"%@ from",
                     loan.name
                     ];
     }

应该获取消息的DetailViewController

  //  DetailViewController.h

  #import <UIKit/UIKit.h>

  @interface DetailViewController : UIViewController

  @property (strong, nonatomic) id detailItem;

  @property (weak, nonatomic) IBOutlet UILabel *message;

  @end

将邮件连接到名为name的标签的步骤是什么? (与助理编辑) 感谢

1 个答案:

答案 0 :(得分:0)

您可以创建委托协议并在详细信息页面中调用某些方法来设置消息,或者通过传递消息来实例化详细信息视图。