- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我花了几天时间试图解决以下问题,但我没有得到任何结果:(
我有一个带有 UIScrollView 和一些 subview 的 viewController,我通过界面生成器添加其中一些,通过代码添加其他一些。当我调用推送下一个 viewController 的方法时,当前 View 会中断,并且当我弹出它时仍然会中断。
我尝试从 Storyboard 中删除自动布局设置,但仍然不起作用。
我以编程方式设置 View 的框架,并移动 ScrollView 的内容偏移量以制作动画。
我在 viewWillAppear 中调用此方法:
- (void)prepareQuestion
{
int nextYposition;
// Question
NSString *q = [self.theQuestion getQuestionTextForLanguage:lang];
NSString *badText = [self.theQuestion getInfTextForLanguage:lang];
NSString *goodText = [self.theQuestion getSupTextForLanguage:lang];
self.answer.questionID = self.theQuestion.questionID;
if (whiteStyle) {
question = [[NPSQuestionViewController alloc] initWithQuestion:q AndStyle:kNPSQuestionStyleWhite];
} else {
question = [[NPSQuestionViewController alloc] initWithQuestion:q AndStyle:kNPSQuestionStyleOther];
}
question.view.center = CGPointMake(self.view.center.x, self.view.center.y - 50);
[self addChildViewController:question];
[self.scrollView addSubview:question.view];
nextYposition = question.view.frame.origin.y + question.view.frame.size.height;
int questionHeight = 0; // Guardamos el alto dependiendo del tipo de control
if (self.sliderStyle) {
// Slider test
if (whiteStyle) {
NPSSliderViewControl = [[NPSSliderViewController alloc] initWithStyle:kNPSSliderViewStyleWhite];
} else {
NPSSliderViewControl = [[NPSSliderViewController alloc] initWithStyle:kNPSSliderViewStyleOther];
}
NPSSliderViewControl.iconSet = [[[OpinatManager sharedInstance] campanya] tipoIconos];
[NPSSliderViewControl setBadText:badText andGoodText:goodText];
[self addChildViewController:NPSSliderViewControl];
[self.scrollView addSubview:NPSSliderViewControl.view];
NPSSliderViewControl.delegate = self;
CGRect frame = NPSSliderViewControl.view.frame;
[NPSSliderViewControl.view setFrame:CGRectMake(0, nextYposition, frame.size.width, frame.size.height)];
questionHeight = frame.size.height - 33; // 33 es el valor de la parte que desaparece del control
} else {
// Control
if (whiteStyle) {
NPSBtnViewControl = [[NPSBtnViewController alloc] initWithStyle:kNPSBtnViewStyleWhite];
} else {
NPSBtnViewControl = [[NPSBtnViewController alloc] initWithStyle:kNPSBtnViewStyleOther];
}
NPSBtnViewControl.iconSet = [[[OpinatManager sharedInstance] campanya] tipoIconos];
[NPSBtnViewControl setBadText:badText andGoodText:goodText];
[self addChildViewController:NPSBtnViewControl];
[self.scrollView addSubview:NPSBtnViewControl.view];
NPSBtnViewControl.delegate = self;
CGRect frame = NPSBtnViewControl.view.frame;
[NPSBtnViewControl.view setFrame:CGRectMake(0, nextYposition, frame.size.width, frame.size.height)];
questionHeight = frame.size.height - 58; // 60 es el valor de la parte que desaparece del control
}
nextYposition += questionHeight;
// Motives question
if (whiteStyle) {
motivesQuestion = [[NPSQuestionViewController alloc] initWithQuestion:self.insatisfactionTitle AndStyle:kNPSQuestionStyleWhite];
} else {
motivesQuestion = [[NPSQuestionViewController alloc] initWithQuestion:self.insatisfactionTitle AndStyle:kNPSQuestionStyleOther];
}
CGRect secondQuestionFrame = motivesQuestion.view.frame;
secondQuestionFrame.origin.y = nextYposition;
motivesQuestion.view.frame = secondQuestionFrame;
motivesQuestion.view.alpha = 0;
[self.scrollView addSubview:motivesQuestion.view];
motivesQuestion.view.tag = 22;
questionHeight = motivesQuestion.view.frame.size.height;
nextYposition += questionHeight;
// Setting up table Y position. Only works if I setted in viewDidAppear
nextPosition = nextYposition;
resetPosition = nextYposition;
// Ajustamos la tableView
self.tableMotives.alpha = 0;
}
有什么想法吗?谢谢!
最佳答案
如果您正在使用自动布局,您基本上不应该直接设置 View 框架。相反,您应该设置约束,以便所有内容都自动放置在正确的位置,并使用 @property
来保存对选定约束的“特殊”引用。这些“特殊”约束是控制屏幕上其他内容的整体位置的约束,它们通过 constant
offset 来工作。 .
当您想执行一些动画来更改屏幕上所有内容的位置时,请使用 UIView
动画 block 并仅修改约束中的常量
。
如果你想重置,再次修改约束上的常量
。
关于ios - viewDidDisappear 时布局被破坏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20920555/
我正在尝试完成撤消/重做。我正在使用loadFromJSON(...)从我存储在数组中的 Canvas 状态重新构建 Canvas 。基本上,我的想法是破坏现有的 Canvas 并重新构建 Canva
在某些情况下,我有一个在 iframe 中打开的网页。当它被加载到那个 iframe 中时,我需要它将窗口位置设置为资源以下载文件(所有这些都是为了更新 GreaseMonkey 脚本......所有
当我创建 Intent 时: Intent in = new Intent(this, myclass.class); this.startActivity(in); 我创建了一个新的 Intent
我正在我本地版本的 Wordpress 网站上为 Wordpress 创建新的短代码。 在 functions.php 中,我添加了例如: function shortTest() { re
我正在为机械网站制作 JavaScript 闪卡游戏。因为我想将方程写在卡片上,所以我需要使用 delta(Δ) 符号。 一张卡片可能有:一侧是“功率方程”,另一侧是“P=W/Δt”。如果卡片从第一面
我编写了以下代码: document.addEventListener("DOMContentLoaded", ()=>{ let menu = document.querySelector(
我的浏览器同步工作正常,但我仍然很难处理之前的 html 的缓存。即使选中了 Chrome 的“禁用缓存”,甚至在隐身模式下也是如此! 要加载页面更改,我总是必须“清除缓存并硬重新加载”。 我想知道,
我注意到每次打开和关闭(通过单击菜单项或单击菜单外的某个区域)时,上下文菜单 ( Ext.menu.Menu ) s 不会从 DOM 中删除,它们只是以某种方式变得不可见。 如何改变这个? 最佳答案
给定依赖记录类型: Record FinPath : Type := mkPath { fp_head : S i; fp_tail
在 Husdon/Jenkins 中,我可以在构建被破坏时设置通知,以向进行破坏构建的 checkin 的用户发送电子邮件。如何在 Teamcity 中执行此操作? 我知道个人用户可以通过 Teamc
我注意到每次打开和关闭(通过单击菜单项或单击菜单外的某个区域)时,上下文菜单 ( Ext.menu.Menu ) s 不会从 DOM 中删除,它们只是以某种方式变得不可见。 如何改变这个? 最佳答案
使用 MIMEMultipart('alternative') 发送 html 和 pain-text 时 将 html 转换为文本时,html 的 anchor 换行 http://127.0.0.
每当我的应用程序最小化时,我都会启动一个服务,该服务向我的 HTTP 服务器发送拉取请求以检查通知,当应用程序恢复时,服务将被终止(以及计划的可运行项)。一切正常,直到我决定终止该应用程序(将其从正在
我意识到该框架处于 alpha 阶段,但正在实现 jQuery Mobile破坏了我的omniauth 身份验证。当我尝试登录时,一旦我尝试点击/auth/twitter Controller ,jQ
我对 Angular 比较陌生,经过几个小时的调试,我发现添加 jquery 时存在一些不兼容性。该指令在没有 jquery 的情况下工作正常,但在使用 jquery 时会中断:/ 这是一个 plnk
我发现,因为我正在处理的所有表单都有一个包含“name =“submit””属性的提交按钮,所以当我单击应该触发表单提交的链接时,触发器提交会中断. 有谁知道我该如何解决这个问题。 下面的 JQuer
我遇到了一个问题:/我得到了一个 CSS 东西,它使悬停时背景位置发生变化。但是当我在 javascript 中运行一个改变悬停的函数后,CSS 停止工作。 这是函数: function tree()
谁能给出一个完整的例子来说明 qooxdoo 1.6 中的 dispose 和 destruct 是如何工作的? ,我在 qooxdoo 演示或文档中找不到任何好的示例。 谢谢你的建议。 最佳答案 处
我对 JFormattedTextField 有疑问(我将它用作我们所有文本字段的基类)。 今天我尝试向该字段的文档添加一个文档过滤器,它工作得很好,但前提是它没有设置格式化程序工厂。 问题是,当设置
我有一个点击事件 $('#ship_Move').click(function (event) { event.stopPropagation();
我是一名优秀的程序员,十分优秀!