gpt4 book ai didi

iphone - UITextView自动补全气泡位置

转载 作者:行者123 更新时间:2023-11-28 17:36:31 26 4
gpt4 key购买 nike

我对在 UITextView 中输入数据时自动完成气泡位置感到困惑。

我观察到的是,根据其框架的来源,自动完成气泡出现在顶部或底部。没有固定位置,前提是 scrollEnabled 设置为 NO

这是两个链接。代码写在init()

http://www.flickr.com/photos/26021742@N00/6975525835/

UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 150, 320, 41)] autorelease];
view.backgroundColor = [UIColor grayColor];
[self.view addSubview:view];
UITextView *growingTextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 10, 200, 27)];
growingTextView.font = [UIFont fontWithName:@"Helvetica" size:13];
growingTextView.scrollEnabled = NO;
[view addSubview:growingTextView];

http://www.flickr.com/photos/26021742@N00/6975525727/

    UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 50, 320, 41)] autorelease];
view.backgroundColor = [UIColor grayColor];
[self.view addSubview:view];
UITextView *growingTextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 10, 200, 27)];
growingTextView.font = [UIFont fontWithName:@"Helvetica" size:13];
growingTextView.scrollEnabled = NO;
[view addSubview:growingTextView];

谁能解释这种观察到的行为???

最佳答案

我知道弹出窗口和气泡总是会自动调整其位置以便于使用。它已经出现在 Apple 的代码中,并且在两个图像中气泡的位置都有意义。

关于iphone - UITextView自动补全气泡位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9664341/

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