gpt4 book ai didi

ios - 将 UITextView 作为 subview 添加到 map View 会导致不需要的中心器。

转载 作者:行者123 更新时间:2023-12-01 16:46:13 24 4
gpt4 key购买 nike

在我的项目中,我使用了一个按钮,按下该按钮会将 UITextView (textWindow) 添加到 map View (mapView)。问题是当您离开用户在 map 上的当前位置后添加 UITextView 时。然后,当您添加 UITextView 时, map 会自动重新定位到用户的位置,我希望它保持在原处而不是重新定位。有什么我可以添加到我的代码中来防止它自动重新定位的东西吗?

我的代码...

- (IBAction)textButton:(id)sender {

UITextView *textWindow = [[UITextView alloc] initWithFrame:CGRectMake(10, 30, 300, 40)];

textWindow.returnKeyType = UIReturnKeyDone;
textWindow.delegate = self;
textWindow.textAlignment = NSTextAlignmentCenter;

[_mapView addSubview:textWindow];
[textWindow becomeFirstResponder];

NSLog(@"Text Button Pressed");

}

最佳答案

我发现在 Storyboard界面中移动按钮时,我不小心将 trackButton 连接到了我的 textButton。因此,当我按下 textButton 时,会同时调用文本和轨道的两种方法。这就解释了为什么当我按下 textButton 时它也会被跟踪。

关于ios - 将 UITextView 作为 subview 添加到 map View 会导致不需要的中心器。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19780617/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com