我在 UIAlertView 中有 UITextView。当我从 UITextView 中选择文本时,那些文本选择菜单(即复制、粘贴、选择等)隐藏在 UIAlert 视图后面,如下面的屏幕截图所示:
有什么办法可以在前面制作这个菜单吗?
我在 UIAlertView 中有 UITextView。当我从 UITextView 中选择文本时,那些文本选择菜单(即复制、粘贴、选择等)隐藏在 UIAlert 视图后面,如下面的屏幕截图所示:
有什么办法可以在前面制作这个菜单吗?
您必须很好地描述问题(至少您使用过的代码)
无论如何,下面的代码对我来说都很好
UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle: @"Select the Text" message:@" " delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Cancel", nil];
UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 65.0, 260.0, 25.0)];
[myTextField setBackgroundColor:[UIColor whiteColor]];
myTextField.text = @"This is the Data string";
[myTextField becomeFirstResponder];
[myAlertView addSubview:myTextField];
[myTextField release];
myTextField = nil;
[myAlertView show];
[myAlertView release];
myAlertView = nil;
注意:根据您的要求对齐框架