iPhone使用委托在不同的窗口之间传递数据

摘要: 在iOS里两个UIView窗口之间传递参数方法有很多,比如1、使用SharedApplication,定义一个变量来传递2、使用文件,或者NSUserdefault来传递3、通过一个单例的class来传递4、通过Delegate来传递前面3种方法,暂且不说, ...

在iOS里两个UIView窗口之间传递参数方法有很多,比如

1、使用SharedApplication,定义一个变量来传递

2、使用文件,或者NSUserdefault来传递

3、通过一个单例的class来传递

4、通过Delegate来传递

前面3种方法,暂且不说,这次主要学习如何使用通过Delegate的方法来在不同的UIView里传递数据

比如: 在窗口1中打开窗口2,然后在窗口2中填入一个数字,这个数字又回传给窗口1

1.首先定义个一委托UIViewPassValueDelegate用来传递值

@protocol UIViewPassValueDelegate
-(void)passValue:(NSString *)value;
@end

 这个 protocol 就是用来传递值

2.在窗口1的头文件里,声明delegate

#import 
#import "UIViewPassValueDelegate.h"
@interface DelegateSampleViewController : UIViewController
{
    UITextField *_value;
}
@property(nonatomic, retain) IBOutlet UITextField *value;
-(IBAction)buttonClick:(id)sender;
@end

 并实现这个委托

-(void)passValue:(NSString *)value
{
    self.value.text = value;
    NSLog(@"the get value is %@", value);
}
  button的Click方法,打开窗口2,并将窗口2的delegate实现方法指向窗口1

-(IBAction)buttonClick:(id)sender
{
    ValueInputView *valueView = [[ValueInputView alloc] initWithNibName:@"ValueInputView" bundle:[NSBundle mainBundle]];
    valueView.delegate = self;
    [self setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
    [self presentModalViewController:valueView animated:YES];
}
  第二个窗口的实现

.h 头文件

#import 
#import "UIViewPassValueDelegate.h"
@interface ValueInputView : UIViewController {
    NSObject * delegate;
    UITextField *_value;
}
@property(nonatomic, retain) IBOutlet UITextField *value;
@property(nonatomic, retain) NSObject * delegate;
-(IBAction)buttonClick:(id)sender;
@end
  .m 实现文件

#import "ValueInputView.h"
@implementation ValueInputView
@synthesize delegate;
@synthesize value = http://www.cnblogs.com/zhwl/archive/2012/07/20/_value;
//http://stackoverflow.com/questions/6317631/obj-c-synthesize
-(void)dealloc {
    [self.value release];
    [super dealloc];
}
-(IBAction)buttonClick:(id)sender
{
    [delegate passValue:self.value.text];
    NSLog(@"self.value.text is%@", self.value.text);
    [self dismissModalViewControllerAnimated:YES];  
}
@end
 

猜你喜欢

转载自livesto.iteye.com/blog/1756589