19使用屬性在窗體中的傳值_自定義AlertView

大綱

一、使用屬性在窗體中的傳值
1.正向傳值:將值從vc1傳至vc2
項(xiàng)目:AttributeTransferValue0316
方法:使用屬性
步驟:
1.在vc2中設(shè)置屬性(拿到vc1中取值癣漆,再傳回vc2礁鲁。誰需要照捡,誰設(shè)屬性涧偷。需要什么類型莽鸭,就要聲明什么類型的屬性)
2.給屬性賦值
3.使用屬性保存的值
2.反向傳值:將值從vc2傳至vc1
項(xiàng)目:TransferBack0316
方法1(不建議使用):使用屬性傳值
原因:通過索引獲取vc數(shù)組中的vc1時(shí)劣摇,容易出錯(cuò)。

二茁裙、自定義AlertView
注意:
①全局變量塘砸,本類中使用;屬性呜达,本類和其他類都可使用谣蠢。
②若父視圖的alpha不為1粟耻,無論子視圖是否設(shè)置自己的alpha查近,子視圖alpha=父視圖的alpha。
1.1 聲明屬性挤忙、初始化方法
1.2 實(shí)現(xiàn)init和show方法
2.1設(shè)置屬性(水桶)
2.2為屬性賦值(裝水)
2.3 獲取屬性(水桶)

正文

一霜威、使用屬性在窗體中的傳值
1.正向傳值:將值從vc1傳至vc2
項(xiàng)目:AttributeTransferValue0316
方法:使用屬性
步驟:
1.在vc2中設(shè)置屬性(拿到vc1中取值,再傳回vc2册烈。誰需要戈泼,誰設(shè)屬性婿禽。需要什么類型,就要聲明什么類型的屬性)
2.給屬性賦值
3.使用屬性保存的值
源碼:
文件1:AppDelegate.m

    ViewController1 *vc1 = [[ViewController1 alloc]init];
    UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:vc1];
    self.window.rootViewController = nav;

文件2:ViewController1.m

@interface ViewController1 ()
{
    __weak IBOutlet UITextField *_textFieldVc1;
}
@end
@implementation ViewController1
- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"vc1";
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}
//vc1 --> vc2
- (IBAction)nextClick:(UIButton *)sender
{
    ViewController2 *vc2 = [[ViewController2 alloc]init];
    //傳值第二步:給屬性賦值
    //情況1:使用字符串
    //在創(chuàng)建對(duì)象之后大猛,在push之前
    vc2.strVc2 = _textFieldVc1.text;
    
    [self.navigationController pushViewController:vc2 animated:YES];
}

文件3:ViewController2.h

#import <UIKit/UIKit.h>
@interface ViewController2 : UIViewController
//哪個(gè)類需要取值扭倾,就在哪個(gè)類中設(shè)置屬性,用來保存值挽绩。
//nonatomic:非原子性的
//copy:與內(nèi)存管理有關(guān)
@property  (nonatomic,copy)NSString *strVc2;
@property (nonatomic,retain)NSArray *arrStr;
//描述屬性的關(guān)鍵字(與內(nèi)存管理有關(guān))
//字符串:copy
//基本數(shù)據(jù)類型膛壹,結(jié)構(gòu)體:assign
//其他類型:retain
@end
文件4:ViewController2.m
@interface ViewController2 ()
{
    __weak IBOutlet UILabel *_labVc2;
}
@end
@implementation ViewController2
- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"vc2";
    //傳值第三步:使用屬性保存的值
    //情況1:使用字符串
    _labVc2.text = self.strVc2;
}

文件5:ViewController1.xib

文件6:ViewController2.xib

2.反向傳值:將值從vc2傳至vc1
項(xiàng)目:TransferBack0316
方法1(不建議使用):使用屬性傳值
原因:通過索引獲取vc數(shù)組中的vc1時(shí),容易出錯(cuò)唉堪。

NSArray *vcArr = [self.navigationController viewControllers];
    ViewController1 *vc1 = [vcArr objectAtIndex:0];

源碼:
文件1:AppDelegate.m

    ViewController1 *vc1 = [[ViewController1 alloc]init];
    UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:vc1];
    self.window.rootViewController = nav;

文件2:ViewController1.h

@interface ViewController1 : UIViewController
{
    __weak IBOutlet UILabel *_label;
}
@property (nonatomic,copy)NSString *str;
@end

文件3:ViewController1.m

//將要顯示
- (void)viewWillAppear:(BOOL)animated
{
    _label.text = self.str;
}
- (IBAction)nextClick:(id)sender
{
    ViewController2 *vc2 = [[ViewController2 alloc]init];
    [self.navigationController pushViewController:vc2 animated:YES];
}

文件4:ViewController2.h

@interface ViewController2 : UIViewController
{
    __weak IBOutlet UITextField *_pwTF;
}
@end

文件5:ViewController2.m

//vc2-->vc1
- (IBAction)backClick:(id)sender
{
    NSArray *vcArr = [self.navigationController viewControllers];
    ViewController1 *vc1 = [vcArr objectAtIndex:0];
    vc1.str = _pwTF.text;    
    
    [self.navigationController popToRootViewControllerAnimated:YES];
}

文件6:ViewController1.xib

文件7:ViewController2.xib

二模聋、自定義AlertView
注意:
①全局變量,本類中使用唠亚;屬性链方,本類和其他類都可使用。
②若父視圖的alpha不為1灶搜,無論子視圖是否設(shè)置自己的alpha祟蚀,子視圖alpha=父視圖的alpha。
1.1 聲明屬性占调、初始化方法
文件:MyAlertView.h

//容器暂题,水桶
@property (nonatomic,retain)ViewController *vc;
//自定義初始化方法
- (id)initWithTitle:(NSString *)title withMessage:(NSString *)message cancleBtnTitle:(NSString *)cancleBtnTitle otherBtnTitle:(NSString *)otherBtnTitle;
//展示
- (void)showView;

1.2 實(shí)現(xiàn)init和show方法
文件:MyAlertView.m

- (id)initWithTitle:(NSString *)title withMessage:(NSString *)message cancleBtnTitle:(NSString *)cancleBtnTitle otherBtnTitle:(NSString *)otherBtnTitle
{
    self = [super init];
    if (self)
    {
        //1.設(shè)置位置大小
        self.frame = CGRectMake(0, 0, WIDTH, HEIGHT);
        //不可直接設(shè)置self的透明度,否則會(huì)影響self上的子控件的透明度
//        self.alpha = 0.5;
        //2.1 半透明的view
        UIView *gray = [[UIView alloc]initWithFrame:self.frame];
        gray.backgroundColor = [UIColor grayColor];
        gray.alpha = 0.5;
        [self addSubview:gray];
        //3.添加view
        UIView *whiteView = [[UIView alloc]initWithFrame:CGRectMake(30, HEIGHT/3.0, WIDTH-60, HEIGHT/3.0)];
        whiteView.backgroundColor = [UIColor whiteColor];
        //圓角
        whiteView.layer.cornerRadius = 20;
        whiteView.clipsToBounds = YES;
        
        [self addSubview:whiteView];
        //3.1 標(biāo)題
        UILabel *titleLab = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, WHITEVIEW_WIDTH, WHITEVIEW_HEIGHT/4.0)];
        titleLab.text = title;
        titleLab.textAlignment = NSTextAlignmentCenter;
        [whiteView addSubview:titleLab];
        //3.2 提示信息
        UILabel *messageLab = [[UILabel alloc]initWithFrame:CGRectMake(0, WHITEVIEW_HEIGHT/4.0, WHITEVIEW_WIDTH, WHITEVIEW_HEIGHT/4.0)];
        messageLab.text = message;
        messageLab.textAlignment = NSTextAlignmentCenter;
        [whiteView addSubview:messageLab];
        //3.3 取消按鈕
        UIButton *cancleBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        cancleBtn.frame = CGRectMake(0, WHITEVIEW_HEIGHT/2.0, WHITEVIEW_WIDTH/2.0, WHITEVIEW_HEIGHT/2.0);
        [cancleBtn setTitle:cancleBtnTitle forState:UIControlStateNormal];
        [cancleBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        cancleBtn.tag = 1;
        [cancleBtn addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
        [whiteView addSubview:cancleBtn];
        //3.3 確定按鈕
        UIButton *otherBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        otherBtn.frame = CGRectMake(WHITEVIEW_WIDTH/2.0, WHITEVIEW_HEIGHT/2.0, WHITEVIEW_WIDTH/2.0, WHITEVIEW_HEIGHT/2.0);
        [otherBtn setTitle:otherBtnTitle forState:UIControlStateNormal];
        [otherBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        otherBtn.tag = 2;
        [otherBtn addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
        [whiteView addSubview:otherBtn];
    }
    return self;
}
//按鈕點(diǎn)擊事件
- (void)buttonClick:(UIButton *)sender
{
    //如果是確定
    if (sender.tag == 2)
    {
        //改變顏色
        self.vc.view.backgroundColor = [UIColor redColor];
    }
    NSLog(@"%@",sender);
    [self removeFromSuperview];
}
//展示
- (void)showView
{
    UIWindow *window = [UIApplication sharedApplication].delegate.window;
    [window addSubview:self];
}

2.1設(shè)置屬性(水桶)
文件:MyAlertView.h

@property (nonatomic,retain)ViewController *vc;

2.2為屬性賦值(裝水)
文件:ViewController.m

- (IBAction)deleteClick:(id)sender
{
    MyAlertView *myAlertView = [[MyAlertView alloc]initWithTitle:@"ChangeColor" withMessage:@"是否改變顏色" cancleBtnTitle:@"取消" otherBtnTitle:@"確定"];
    //將本類對(duì)象self傳給myAlertView.vc
    myAlertView.vc = self;
    [myAlertView showView];
}

2.3 獲取屬性(水桶)
文件:MyAlertView.m

//按鈕點(diǎn)擊事件
- (void)buttonClick:(UIButton *)sender
{
    //如果是確定
    if (sender.tag == 2)
    {
        //改變顏色
        self.vc.view.backgroundColor = [UIColor redColor];
    }
    NSLog(@"%@",sender);
    [self removeFromSuperview];
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末究珊,一起剝皮案震驚了整個(gè)濱河市薪者,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌剿涮,老刑警劉巖言津,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異取试,居然都是意外死亡悬槽,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門瞬浓,熙熙樓的掌柜王于貴愁眉苦臉地迎上來初婆,“玉大人,你說我怎么就攤上這事猿棉“跖眩” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵萨赁,是天一觀的道長(zhǎng)弊琴。 經(jīng)常有香客問我,道長(zhǎng)杖爽,這世上最難降的妖魔是什么敲董? 我笑而不...
    開封第一講書人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任紫皇,我火速辦了婚禮,結(jié)果婚禮上腋寨,老公的妹妹穿的比我還像新娘聪铺。我一直安慰自己,他們只是感情好萄窜,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開白布计寇。 她就那樣靜靜地躺著,像睡著了一般脂倦。 火紅的嫁衣襯著肌膚如雪番宁。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評(píng)論 1 291
  • 那天赖阻,我揣著相機(jī)與錄音蝶押,去河邊找鬼。 笑死火欧,一個(gè)胖子當(dāng)著我的面吹牛棋电,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播苇侵,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼赶盔,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了榆浓?” 一聲冷哼從身側(cè)響起于未,我...
    開封第一講書人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎陡鹃,沒想到半個(gè)月后烘浦,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡萍鲸,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年闷叉,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片脊阴。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡握侧,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出嘿期,到底是詐尸還是另有隱情品擎,我是刑警寧澤,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布秽五,位于F島的核電站孽查,受9級(jí)特大地震影響饥悴,放射性物質(zhì)發(fā)生泄漏坦喘。R本人自食惡果不足惜盲再,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望瓣铣。 院中可真熱鬧答朋,春花似錦、人聲如沸棠笑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蓖救。三九已至洪规,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間循捺,已是汗流浹背斩例。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留从橘,地道東北人念赶。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像恰力,于是被迫代替她去往敵國(guó)和親叉谜。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容