我想創建複雜的UIAlert查看。但我沒有得到正確的標記,以得到它的工作 Actaully複雜UIAlert查看我需要的UIAlertView中是這樣如何創建iphone
- 它在左上角的png圖像。並在同一行中有UIAlert titleBar。
- 下面,它有兩個線
- 的消息,它的下方有TextFiled。而文本框下方有 的又一次相同的TextMessage
- 最後,但不是在列表它有兩個按鈕。
然後用戶輸入文本字段中的文本值,然後按確定BUtton它在標籤上顯示也。
我試圖編碼這樣但沒有得到工作什麼在它
UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Set Tags"
message:@"Do you want to add tag.\nExample:-My Content"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[message addTextFieldWithValue:@"" label:@"Enter tag Name"];
[message addButtonWithTitle:@"Cancel"];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 8, 30, 30)];
NSString *path = [[NSString alloc] initWithString:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"tag.png"]];
UIImage *bkgImg = [[UIImage alloc] initWithContentsOfFile:path];
[imageView setImage:bkgImg];
[bkgImg release];
[path release];
[message addSubview:imageView];
if(FALSE)
{
[message addButtonWithTitle:@"Button 4"];
}
[message show];
[message release]
的問題;
幫我解決這個問題 謝謝。