- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UIPageControl
和一个 UIScrollView
,您需要滑动它们才能更改以 UILabel
作为标题和 的 View UITextView
作为内容。
在肖像 View 上,UILabel
和UITextView
都很好,除了一个小问题。无论我的UILabel
的textAlignment
是Center还是Right,它总是显示在Left View 的手角。
现在进入横向 View 。这是大多数问题发生的地方。
这就是它的样子,
至于代码,
- (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/
我正在用 C++ 开发一个程序,我必须实现一个 cron。由于不同的原因,这个 cron 应该每小时和每 24 小时执行一次。我的第一个想法是创建一个独立的 pthread 并在每次 1h 内休眠。这
我需要向同一场景几何添加多个体素(立方体等于),但每个体素具有不同的纹理。 我的体素超过 500 个,导致性能出现严重错误。 这是我的代码: texture = crearTextura(voxel.
对于 MySQL 数据库,我有 2 个场景,我不确定该选择哪一个,并且对于一些表我也遇到了同样的困境。 我正在制作一个仅供成员(member)访问的网络应用程序。每个成员都有自己的交易、费用和“列表”
我想知道一个简单的事情: 当设置一个被所有 child 继承的样式时,是否建议最具体? Structure: html > body > parent_content > wrapper > p 我想
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
这些天我正在阅读有关 JPA 的内容。我了解到可以在 JPQL 中使用 explicit 或 implicit JOIN。 显式加入 em.createQuery(“SELECT b.title, p
我有一种情况需要连接几个字符串以形成一个类的 id。基本上,我只是在列表中循环以获取对象的 ToString 值,然后将它们连接起来。 foreach (MyObject o in myList)
我正在检查我的游戏在拖尾效果下的性能会降低多少。但我注意到每秒的操作次数更多了。这怎么可能? 这是怎么回事... context.fillRect(0, 0, 500, 500); // cl
如果我可以选择使用全局变量或传递变量,哪个选项在速度和内存使用方面更好? // global variable function func(){ global $var; echo $var;
我有一个类似这样的表“tbl”:ID bigint(20) - 主键,自增字段1字段2字段3 该表有 60 万多行。 查询:SELECT * from tbl ORDER by ID LIMIT 60
谁能告诉我,我如何比较 TSP 最优和启发式算法?我已经实现了 TSP,但不知道如何比较它们。事实上,我怎样才能找到 TSP 的最优成本?有什么方法或猜测吗? 谢谢 最佳答案 用众所周知的基准实例检查
我有一个 NSTextStorage里面有长文本(比如一本书有 500 页,当前字体在设备上超过 9000 页)。我以这种方式为 textcontainer 分发此文本: let textStorag
我有一个根据邮政编码搜索项目的应用程序。 在搜索邮政编码时,我返回了来自该城市/社区的所有产品(通过解析邮政编码完成)。 我现在需要根据与原始邮政编码的距离对这些产品进行分类。 我将纬度/经度存储在数
我有许多进程(大约100到1000个进程),每个进程都必须向其他进程(例如大约10个)发送一些数据。 (通常,但不一定总是这样,如果A发送给B,B也发送给A。)每个进程都知道必须从哪个进程接收多少数据
我知道无状态组件使用起来更舒服(在特定场景下),但是既然你不能使用shouldComponentUpdate,这是否意味着组件将在每次props更改时重新渲染?我的问题是,使用带有智能 shouldC
我正在研究 Google Pagespeed 的加速页面加载时间指南列表。其中之一是缩小 CSS 和 JS 文件。 由于这些文件经常更改,我正在考虑使用 PHP 脚本根据请求(来自浏览器)即时缩小此脚
我正在尝试从下表构建 SQL 查询(示例): Example of table with name "performances" 这是带有运动表现的表格。我想从这个表中选择每个学科和一组一个或多个类别
假设我们有一个字符串 var "sA",我想检查字符串 "123"是否在 sA 的末尾。 什么更好,为什么: if(sA.length() > 2) sA.substr(sA.length()-3)
关于受这篇文章启发的可参数化查询 LINQ group by property as a parameter我获得了一个很好的参数化查询,但在性能上有一个缺点。 public static void
| 和| 之间有什么主要区别吗?和 + 从长远来看会影响代码的性能吗?或者都是 O(1)?我正在使用的代码是这样的: uint64_t dostuff(uint64_t a,uint64_t b){
我是一名优秀的程序员,十分优秀!