Modal View Controller Example – Part 2[转]

简介:

n the first part of this tutorial, we set up a pair of simple views in Interface Builder that we switched between modally. In this tutorial, we’ll make them somewhat useful and pass data between them using delegates.

The concept of protocols and delegates is an important and somewhat complex one, but I like to think of it in these simplified terms:


Basically, the object that implements our protocol agrees to implement the methods of that protocol. In the case of this tutorial, we’ll be connecting the modal view with our main view using a delegate.

Firstly, we’ll create the interface elements for our project. Open the ModalViewExampleViewController XIB file and create a button and a label as shown.


Next, add those interface elements to ModalViewExampleViewController.h. We’re also adding the necessary IBAction also:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

//  ModalViewExampleViewController.h

 

@interface ModalViewExampleViewController : UIViewController {

    UIButton *showDefaultButton, *showFlipButton, *showDissolveButton, *showCurlButton;

    UIButton *showWithDelegateButton;

    UILabel *myMessage;

}

 

@property (nonatomic, retain) IBOutlet UIButton *showDefaultButton, *showFlipButton, *showDissolveButton, *showCurlButton;

@property (nonatomic, retain) IBOutlet UIButton *showWithDelegateButton;

@property (nonatomic, retain) IBOutlet UILabel *myMessage;

 

- (IBAction)showDefault:(id)sender;

- (IBAction)showFlip:(id)sender;

- (IBAction)showDissolve:(id)sender;

- (IBAction)showCurl:(id)sender;

- (IBAction)showWithDelegate:(id)sender;

 

@end

Be sure to include the necessary additions to ModalViewExampleViewController.m:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

//  ModalViewExampleViewController.m

#import "ModalViewExampleViewController.h"

#import "SampleViewController.h"

 

@implementation ModalViewExampleViewController

 

@synthesize showDefaultButton, showFlipButton, showDissolveButton, showCurlButton;

@synthesize showWithDelegateButton, myMessage;

...

- (IBAction)showWithDelegate:(id)sender {

 

}

...

- (void)dealloc {

    [showDefaultButton release];

    [showFlipButton release];

    [showDissolveButton release];

    [showCurlButton release];

    [showWithDelegateButton release];

    [myMessage release];

    [super dealloc];

}

 

@end

Jump to Interface Builder and be sure to link the new elements with the properties we defined. Refer to Part 1 of this tutorial for a guide on how to do that.


The next step is key. We will create a basic protocol and then assign a delegate. Open up ModalViewExampleViewController.h and add this:

1

2

3

4

5

6

// ModalViewExampleViewController.h

@protocol ModalViewDelegate

 

- (void)didReceiveMessage:(NSString *)message;

 

@end

We then tell ModalViewExampleViewController to implement this protocol:

// ModalViewExampleViewController.h

@interface ModalViewExampleViewController : UIViewController <ModalViewDelegate>

We also need to add the protocol’s method to the main implementation:

1

2

3

4

// ModalViewExampleViewController.m

- (void)didReceiveMessage:(NSString *)message {

 

}

Once we have these in place, the next step is to set up a reference between the two views. What we will do is define a delegate inside of SampleView so that we can send messages to it.
Include the protocol in ModalViewExampleViewController.h and add the reference:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

// SampleViewController.h

@protocol ModalViewDelegate;

 

@interface SampleViewController : UIViewController {

    id<ModalViewDelegate> delegate;

 

    UIButton *dismissViewButton;

}

 

@property (nonatomic, assign) id<ModalViewDelegate> delegate;

@property (nonatomic, retain) IBOutlet UIButton *dismissViewButton;

 

- (IBAction)dismissView:(id)sender;

 

@end

Be sure to synthesize the delegate in SampleViewController.m, and include the necessary header files.

1

2

3

4

5

6

7

8

#import "SampleViewController.h"

#import "ModalViewExampleViewController.h"

 

@implementation SampleViewController

 

@synthesize dismissViewButton;

@synthesize delegate;

...

So far we have defined a protocol inside of our parent view, and defined a delegate in our modal view. The next step is to link them together and make them useful.
Firstly, we’ll write the functions that will handle the messages. Replace the original definition of didReceiveMessage with this:

1

2

3

- (void)didReceiveMessage:(NSString *)message {

[myMessage setText:message];

}

And also add the following code to showWithDelegate:

1

2

3

 SampleViewController *sampleView = [[[SampleViewController alloc] init] autorelease];

 sampleView.delegate = self;

 [self presentModalViewController:sampleView animated:YES];

What we’ve done is create a SampleView object and assigned its delegate to be the parent view. That is, the parent view will be handling messages sent by SampleView.
Open up SampleViewController.m and add the code to send the message.

1

2

3

4

5

6

// SampleViewController.m

- (IBAction)dismissView:(id)sender {

    [delegate didReceiveMessage:@"Hello World"];

 

    [self dismissModalViewControllerAnimated:YES];

}

Compile the app and run it. You should be able to see the text “Hello World” passed from one view to another once you dismiss your modal view with delegate. You can extend this any way you like with additional controls on the modal view, such as sliders or text input.

Download the source code for this project here.

欢迎加群互相学习,共同进步。QQ群:iOS: 58099570 | Android: 330987132 | Go:217696290 | Python:336880185 | 做人要厚道,转载请注明出处!http://www.cnblogs.com/sunshine-anycall/archive/2011/11/22/2259441.html
相关文章
|
6月前
|
缓存
关于 Spartacus ProdutList Component Service model$ 的填充逻辑
关于 Spartacus ProdutList Component Service model$ 的填充逻辑
28 0
|
Java
viewpage 添加fragment 报错 viewpage demo LayoutInflater 自定义控件轮播图demo
viewpage 添加fragment 报错 viewpage demo LayoutInflater 自定义控件轮播图demo
82 0
viewpage 添加fragment 报错 viewpage demo LayoutInflater 自定义控件轮播图demo
|
JavaScript 容器
SAP Spartacus list view里router-outlet的填充逻辑
SAP Spartacus list view里router-outlet的填充逻辑
SAP Spartacus list view里router-outlet的填充逻辑
SAP Spartacus List Component 里定义的待显示 Popover 内容,如何传递到 Popover Component 里的?
SAP Spartacus List Component 里定义的待显示 Popover 内容,如何传递到 Popover Component 里的?
100 0
SAP Spartacus List Component 里定义的待显示 Popover 内容,如何传递到 Popover Component 里的?
使用page-slot显示SAP Spartacus section里包含的Component和layout设计
使用page-slot显示SAP Spartacus section里包含的Component和layout设计
93 0
使用page-slot显示SAP Spartacus section里包含的Component和layout设计
How does model reference pass from app view to master view
Created by Wang, Jerry, last modified on May 21, 2015
How does model reference pass from app view to master view
How to add a custom UI component to service order overview page
How to add a custom UI component to service order overview page
How to add a custom UI component to service order overview page
|
XML JavaScript 数据格式
UI binding render - how to check
Created by Jerry Wang, last modified on May 14, 2015
UI binding render - how to check