我只为 iOS 开发了几个月,并且在很多场合都使用过协议,但是我已经被这个问题困扰了几天。
这是我的代码
子头文件:QuoteSelections.h
@protocol myDelegate
@optional -(void)selectedValueIs:(NSString *)value;
@end
@interface QuoteSelections : UITableViewController<UITableViewDataSource, UITableViewDelegate> {
}
@property (retain, nonatomic) NSMutableArray *ArrDetails;
@property (assign) id<myDelegate> delegate;
@end
子方法文件:QuoteSelections.m
@implementation QuoteSelections
@synthesize delegate;
(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *valueString = @"Test";
[self.delegate selectedValueIs:valueString];
[self.navigationController popViewControllerAnimated:YES]; }
我selectedValueIs
用测试字符串调用了委托方法。
这是父头文件:newQuoteSec.h
@interface newQuoteSec : UITableViewController <myDelegate> {
QuoteSelections *quoteSelections; }
这是我的父方法文件:newQuoteSec.m
(void)viewDidLoad {
[super viewDidLoad];
quoteSelections = [[QuoteSelections alloc]init];
quoteSelections.delegate = self; }
(void)selectedValueIs:(NSString *)value {
ddlPurposeOfLoan.text = value; }
我已经在 中设置了子控制器的委托viewDidLoad
,我认为这应该足以调用我的selectedValueIs
方法,但事实并非如此。为什么?
这是 Yogesh 推荐的编辑版本
目的是在第二个视图控制器中设置所选项目的值以填充第一个视图控制器中的文本字段
QuoteSelections.h
@protocol myDelegate
@optional -(void)selectedValueIs:(NSString *)value;
@end
@interface QuoteSelections : UITableViewController<UITableViewDataSource, UITableViewDelegate>
{
}
@property (assign) id<myDelegate> myDelegate;
QuoteSelections.m
#import "QuoteSelections.h"
@interface QuoteSelections ()
@end
@implementation QuoteSelections
@synthesize myDelegate;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *valueString = @"Test";
[self.myDelegate selectedValueIs:valueString];
[self.navigationController popViewControllerAnimated:YES];
}
newQuoteSec.h
@interface newQuoteSec : UITableViewController <STComboTextDelegate, STDateTextDelegate, JSONRPCServiceDelegate, UITextFieldDelegate, UITableViewDelegate, myDelegate>
{
QuoteSelections *quoteSelections;
}
newQuoteSec.m
- (void)viewDidLoad
{
[super viewDidLoad];
quoteSelections = [[QuoteSelections alloc]init];
quoteSelections.myDelegate = self;
}
-(void)selectedValueIs:(NSString *)value
{
ddlPurposeOfLoan.text = value;
}
编辑...
我在设置委托之前插入了一个 NSLog
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *valueString = @"Test";
NSLog(@"Showing the delegate didSelectRowAtIndexPath%@", self.myDelegate);
selectedValue = valueString;
[self.myDelegate selectedValueIs:valueString];
[self.navigationController popViewControllerAnimated:YES];
}
输出窗口显示空
2012-11-27 10:23:59.562 miLoan[18225:c07] 显示代理 didSelectRowAtIndexPath(null)
任何想法为什么?其他一切看起来都不错。
我也在使用故事板!