UIAlertView警報-IOS開發

來源:互聯網
上載者:User

UIAlertView* myAlert = [[UIAlertView alloc]                    initWithTitle:@"sorry"                     message:@"1234567890"                     delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];                    myAlert.delegate =    self;                    [myAlert show];                    //[myAlert release];//如果未在下面的委託中release的話記得要在這裡release,否則記憶體流失了

這裡設定delegate有啥用出,加入我們僅僅是只要顯示一個彈窗警告,而不採取其他動作我們可以安全用如下代碼解決:

[[[[UIAlertView alloc]                initWithTitle:@"sorry"                 message:@"1234567890"                 delegate:self                 cancelButtonTitle:@"OK"                 otherButtonTitles:nil, nil]                autorelease]                show];

設定委託有啥作用呢?我們可以實現UIAlertView的一個委託方法,讓後可以在這個方法裡處理按下按鈕後的動作,根據使用者按下的哪個按鈕來決定進行射門樣的操作,比如按下OK按鈕與按下Cancel按鈕的後要進行的操作必然有可能不同:

-(void)alertView:(UIAlertView*)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{    NSLog(@"Button %d pressed",buttonIndex);    [alertView release];}

看到否?我們可以通過buttonIndex來判斷使用者按下了哪個按鈕,然後來進行相應處理,同時我們還可以在這裡面release,因為我們在上面的代碼中可能不確定需要在哪裡release,所以在按下按鈕後release是不是最安全的呢?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.