我想在AlertView上添加TextBox。但是當我添加時,它與按鈕上的重疊很少...所以我想增加alertview的高度和寬度......任何人都可以告訴任何想法?如何更改iPhone應用程序中AlertView的框架...?
2
A
回答
1
試試下面的代碼:
UIAlertView alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Title", nil)
message:NSLocalizedString(@"Message\n\n\n", nil)
delegate:self
cancelButtonTitle:NSLocalizedString(@"Cancel", nil)
otherButtonTitles:NSLocalizedString(@"OK", nil), nil];
UITextField textField = [[UITextField alloc] initWithFrame:CGRectMake(16.0, 100.0, 250.0, 25.0)];
textField.borderStyle = UITextBorderStyleRoundedRect;
[alertView addSubview:textField];
[textField release];
[alertView show];
[alertView release];
+0
謝謝!它的工作......事實上,我以同樣的方式做,但不使用「\ n \ n \ n」。這就是爲什麼文本框與按鈕重疊。 – 2011-02-17 05:48:40
0
試試這個
UITextField *TextField = [[UITextField alloc] initWithFrame:CGRectMake(22.0, 50.0, 240.0, 30.0)];
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Enter\n\n" message:@"" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alertView addSubview:TextField];
[alertView show];
+0
謝謝!它的工作......事實上,我以同樣的方式做,但不使用「\ n \ n \ n」。這就是爲什麼文本框與按鈕重疊。 – 2011-02-17 05:50:02
相關問題
- 1. 如何更改離子框架中的應用程序版本?
- 2. 如何更改NetBeans平臺框架應用程序的LookAndFeel
- 3. 如何使用實體框架更改應用程序名稱
- 4. 如何在iPhone應用程序中使用Core Midi框架?
- 5. iphone:在本地iPhone應用程序中嵌入Safari(如「框架」)
- 6. iPhone應用程序/框架鏈接
- 7. 如何更改iPhone應用程序中的視圖的位置
- 8. 如何添加可可框架到我的iPhone應用程序
- 9. iPhone:更改UIImageView框架
- 10. 如何確定框架IPhone應用程序使用?
- 11. 如何從iPhone應用程序使用私人框架
- 12. 在iPhone應用程序開發中的Alertview
- 13. 如何從應用程序中更改iphone的亮度
- 14. 如何更改iphonecomposer應用程序中的backgroundcolor iphone
- 15. 如何更改應用程序的方向而不更改iphone應用程序中的設備方向
- 16. 在VB.NET控制檯應用程序中更改目標框架
- 17. 在iOS應用程序中動態更改子視圖框架
- 18. iPhone應用程序的網站 - iPhone的框架
- 19. 如何設置代碼框架爲iPhone應用程序
- 20. 如何爲iPhone應用程序開發配置live555框架?
- 21. 如何在iPhone應用程序中動態更改Tabbaritem圖像
- 22. 如何在iPhone應用程序中更改背景顏色
- 23. 如何在iPhone應用程序中更改版本號
- 24. 如何禁用iPhone中的alertview按鈕?
- 25. 如何在Asp.Net身份框架中動態更改/設置Facebook應用程序
- 26. 如何使iPhone應用程序能夠容忍CoreData架構更改
- 27. 如何更改我的iPhone應用程序的背景圖片?
- 28. 如何更改iPhone上的應用程序的名稱?
- 29. 如何更改我的iPhone應用程序的名稱?
- 30. iPhone更改應用程序名稱
試着接受你以前的答案,然後更多的人會幫助你.. – Sat 2011-02-16 12:08:11