iOS 代理協議傳值

來源:互聯網
上載者:User

標籤:

從ViewController跳轉到FirstViewController, 在FirstViewController中傳一個NSInteger值回來


ViewController.m

#import "ViewController.h"

#import "FirstViewController.h"


@interface ViewController () <PassValueDelegate>

@end


@implementation ViewController


- (void)viewDidLoad {

    [superviewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

    self.view.backgroundColor = [UIColorwhiteColor];

    _myButton = [UIButtonbuttonWithType:UIButtonTypeCustom];

   _myButton.frame =CGRectMake(20,20, 100, 100);

    [_myButtonsetTitle:@"跳轉"forState:UIControlStateNormal];

    _myButton.backgroundColor = [UIColorredColor];

    [_myButtonaddTarget:selfaction:@selector(clicked:)forControlEvents:UIControlEventTouchUpInside];

    [self.viewaddSubview:_myButton];

}

// button點擊事件 跳轉到FirstViewController

- (void)clicked:(UIButton *)button

{

    FirstViewController *firVC = [[FirstViewControlleralloc] init];

    firVC.passDelegate =self;

    [selfpresentViewController:firVC animated:YEScompletion:nil];

}


- (void)setValue:(NSInteger )value

{

   NSLog(@"value ===== %ld", (long)value);

}


@end







FirstViewController.h

// 簽協議  以及方法(名子自己起,類型為要傳的值的類型)

@protocol PassValueDelegate <NSObject>

- (void)setValue:(NSInteger)value;

@end


@interface FirstViewController : UIViewController

// 簽代理  屬性

@property(nonatomic, assign)id<PassValueDelegate> passDelegate;

@property(nonatomic, assign)NSInteger number;

@end



FirstViewController.m

#import "FirstViewController.h"


@interface FirstViewController ()


@end


@implementation FirstViewController


- (void)viewDidLoad {

    [superviewDidLoad];

    // Do any additional setup after loading the view.

    self.view.backgroundColor = [UIColorgreenColor];

    

    _myButton = [UIButtonbuttonWithType:UIButtonTypeCustom];

    _myButton.frame =CGRectMake(20,20, 100, 100);

     [_myButtonaddTarget:selfaction:@selector(clicked:)forControlEvents:UIControlEventTouchUpInside];

    [self.viewaddSubview:_myButton];


   _number = 1000;

}


//代理遵從協議的方法

- (void)clicked:(UIButton *)button

{

    [self.passDelegatesetValue:_number];

    [self dismissViewControllerAnimated:YEScompletion:nil];

}



iOS 代理協議傳值

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.