gpt4 book ai didi

iphone - UILabel 表现得很奇怪

转载 作者:行者123 更新时间:2023-11-29 04:05:57 25 4
gpt4 key购买 nike

我有一个 UIPageControl 和一个 UIScrollView,您需要滑动它们才能更改以 UILabel 作为标题和 的 View UITextView 作为内容。

肖像 View 上,UILabelUITextView都很好,除了一个小问题。无论我的UILabeltextAlignmentCenter还是Right,它总是显示在Left View 的手角。

现在进入横向 View 。这是大多数问题发生的地方。

这就是它的样子,

enter image description here

至于代码,

- (void)viewDidLoad
{
[super viewDidLoad];

pageControl.currentPage = 0;
pageControl.numberOfPages = 4;

scrollView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
pageControl.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin;
}

- (void)contentSize
{
for (int i = 0; i < 4; i++) {
CGRect textViewFrame = CGRectMake(scrollView.frame.size.width * i, 30.0, 320.0, scrollView.frame.size.height - 30.0);

CGRect labelFrame = CGRectMake(scrollView.frame.size.width * i, 0.0, 320.0, 0.0);

UITextView *textView = [[UITextView alloc] initWithFrame:textViewFrame];
UILabel *label = [[UILabel alloc] initWithFrame:labelFrame];

switch (i) {
case 0:
label.text = @"Test 1";
textView.text = @"Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.";
break;

case 1:
label.text = @"Test 2";
textView.text = @"2";
break;

case 2:
label.text = @"Test 3";
textView.text = @"3";
break;

case 3:
label.text = @"Test 4";
textView.text = @"4";
break;

default:
break;
}

textView.editable = NO;
textView.textColor = [UIColor grayColor];
textView.textAlignment = NSTextAlignmentRight;
[textView setFont:[UIFont fontWithName:@"Symbol" size:13]];

label.textAlignment = NSTextAlignmentCenter;
[label setFont:[UIFont fontWithName:@"AmericanTypewriter" size:20]];
[label sizeToFit];

[scrollView addSubview:label];
[scrollView addSubview:textView];
}

scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * 4, scrollView.frame.size.height);
}

- (void)viewDidLayoutSubviews
{
[self contentSize];
}

- (void)scrollViewDidScroll:(UIScrollView *)sender
{
CGFloat pageWidth = scrollView.frame.size.width;
int page = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
self.pageControl.currentPage = page;
}

最佳答案

首先,使用[label sizeToFit];会减少标签的宽度,这就是为什么它总是在左边。这就是它应该做的,如果您不想减小它的大小并将标签的宽度保持为页面的宽度,那么就不要使用它。

发生滚动页面问题是因为调整 ScrollView 大小时滚动内容不会改变。您需要做的是,当方向改变时(可以在 (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientationuration:(NSTimeInterval)duration 中):

  • 设置新的框架尺寸后,调整 ScrollView 的内容大小(页面现在具有更小的高度和更大的宽度)。

  • 将 subview 的框架更改为新方向(即为页面分配 ScrollView 的新边界并重新分配 origin.x)

  • 如果需要,调整每个页面中的内容

  • 滚动到您当前正在观看的页面:

代码(来 self 拥有的寻呼机组件,可能需要调整一些内容才能工作):

-(void) scrollToCurrentPage {
CGRect frameCurrent = scrollview.frame;
frameCurrent.origin.x = _currentPageNumber*frameCurrent.size.width;
frameCurrent.origin.y = 0;
//_currentPage is a reference to the page that was being watched before rotation
_currentPage.frame = frameCurrent;
[_container scrollRectToVisible: frameCurrent animated: NO];
}

关于iphone - UILabel 表现得很奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15229188/

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