2010-12-17 36 views
-10

我是iphone應用程序的新手。在我當前的應用程序中,我有uibutton(changepassword)。我的要求是,當我點擊按鈕時,它會顯示包含三個文本文件(當前密碼,新密碼,重新輸入密碼)和兩個uibuttons(submitbutton,取消按鈕)。任何人都可以給我解釋所需的代碼嗎?在iPhone應用程序開發中的Alertview

+0

請妥善格式化您的文章。無法閱讀 – Tarun 2010-12-17 10:10:55

+9

這是您提出的第五個問題,每個問題似乎只是要求人們向您發送代碼,以供您正在使用的應用程序的下一部分。爲什麼不閱讀有關編寫iPhone應用程序的教程,實際上嘗試學習一些東西,而不是從互聯網上覆制和粘貼代碼? – 2010-12-17 10:34:50

+0

如果你沒有時間或關心甚至格式化你的代碼,人們不會麻煩回答你的問題。 :) – 2012-12-07 13:03:13

回答

3
// Create a new alert object and set initial values. 
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" 
               message:@"Message" 
               delegate:nil 
             cancelButtonTitle:@"Ok" 
             otherButtonTitles:nil]; 
// Display the alert to the user 
[alert show]; 
// Release the alert 
[alert release]; 

實例和解釋在這裏:http://iloveco.de/uikit-alert-types/

參考:http://developer.apple.com/library/ios/#documentation/uikit/reference/UIAlertView_Class/UIAlertView/UIAlertView.html

+0

你的第一個鏈接似乎已經死了。 – idmean 2013-12-27 17:56:57