如何将参数传递给 from:toObject:selector:?

发布于 2024-11-11 16:01:22 字数 583 浏览 7 评论 0原文

我有一个包含几行的 TableView。当选择一行时,我需要执行选择器。我做了这样的事情:

 [TTTableTextItem 
  itemWithText:NSLocalizedString(@"Cash","Title:Cash")
  URL:[NSString @"tt://payment/add/%d",5]
  accessoryURL:[NSString stringWithFormat:detail,5]],

并声明:

 ..................... 
 TTURLMap* map = [TTNavigator navigator].URLMap;
 [map from:@"tt://payment/add/(source:)" toObject:self selector:@selector(addPayment:)];
 ..................... 

- (void) addPayment:(PaymentType)theType {
   ALog(@"%ld",theType);
}

但是,theType 总是得到 0。那么,我如何传递参数呢?

I have a TableView with several rows. When a row is selected, I need to perform a selector. I do something like this:

 [TTTableTextItem 
  itemWithText:NSLocalizedString(@"Cash","Title:Cash")
  URL:[NSString @"tt://payment/add/%d",5]
  accessoryURL:[NSString stringWithFormat:detail,5]],

and declare:

 ..................... 
 TTURLMap* map = [TTNavigator navigator].URLMap;
 [map from:@"tt://payment/add/(source:)" toObject:self selector:@selector(addPayment:)];
 ..................... 

- (void) addPayment:(PaymentType)theType {
   ALog(@"%ld",theType);
}

But, theType always get 0. So, how I can pass the parameter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只为守护你 2024-11-18 16:01:22

一种方法(我认为)是这样做:

[map from:@"tt://payment/add/(addPayment:)" toObject:self];

括号中的 addPayment: 暗示要调用的 self 选择器。

One way (I think) is to do this:

[map from:@"tt://payment/add/(addPayment:)" toObject:self];

The addPayment: in parentheses implies what selector of self to invoke.

转角预定愛 2024-11-18 16:01:22

你的数据源是什么?表视图不存储自己的数据。您使用了正确的协议吗?

What is your datasource? Table Views do not store their own data. Have you used the correct protocal?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文