- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个 tableView,它是我在 Github 上找到的 Parallax table view 的子类。完成所有表格 View 的正常设置(删除了一些因为它不相关)。
class EventDetailTableViewController: ParallaxTableViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Set the image:
self.imageView.image = eventImage
self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: .Default)
self.navigationController?.navigationBar.shadowImage = UIImage()
self.navigationController?.navigationBar.translucent = true
}
// MARK: - UITableViewDelegate
override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return UITableViewAutomaticDimension
}
override
func tableView(tableView: UITableView, estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return UITableViewAutomaticDimension
}
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 4
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
// SET UP CELL
}
@IBAction func backButtonPressed(sender: AnyObject) {
print("backButtonPressed")
self.navigationController?.navigationBar.translucent = false
self.navigationController?.navigationBar.barTintColor = UIColor(red: 227/255, green: 38/255, blue: 54/255, alpha: 1.0)
self.navigationController?.popViewControllerAnimated(true)
}
} // END OF VIEWCONTROLLER CLASS
这里需要注意的重要事项是我已使 navigationBar
透明。当 backButtonPressed
被调用时,我希望将 navigationBar.Color
改回之前 View Controller 的颜色(红色)。所以我在 backButtonPressed()
这是我的视差代码。请查看最后一个函数 moveImage()
。我有一个简单的效果,当 tableview 向下滚动到足以描述 navigationBar
出现时标题为“Event Description”
class ParallaxTableViewController: UITableViewController {
// Create the UIView
//var bottomFloatingView = UIView()
// Create the UIImageView
let imageView = UIImageView()
// Set the factor for the parallaxEffect. This is overwritable.
var parallaxFactor:CGFloat = 2
// Set the default height for the image on the top.
var imageHeight:CGFloat = 320 {
didSet {
moveImage()
}
}
// Initialize the scrollOffset varaible.
var scrollOffset:CGFloat = 0 {
didSet {
moveImage()
}
}
override func viewDidLoad() {
super.viewDidLoad()
// Set the contentInset to make room for the image.
self.tableView.contentInset = UIEdgeInsets(top: imageHeight, left: 0, bottom: 0, right: 0)
// Change the contentMode for the ImageView.
imageView.contentMode = UIViewContentMode.ScaleAspectFill
// Add the imageView to the TableView and send it to the back.
view.addSubview(imageView)
view.sendSubviewToBack(imageView)
}
override func viewDidLayoutSubviews() {
// Update the image position after layout changes.
moveImage()
}
// Define method for image location changes.
func moveImage() {
let imageOffset = (scrollOffset >= 0) ? scrollOffset / parallaxFactor : 0
let imageHeight = (scrollOffset >= 0) ? self.imageHeight : self.imageHeight - scrollOffset
imageView.frame = CGRect(x: 0, y: -imageHeight + imageOffset, width: view.bounds.width, height: imageHeight)
if imageOffset > 150 {
print("imageOffSet")
self.navigationItem.title = "Event Description"
self.navigationController?.navigationBar.translucent = false
self.navigationController?.navigationBar.barTintColor = UIColor.whiteColor()
self.navigationController?.navigationBar.shadowImage = nil
} else {
print("else")
self.navigationItem.title = ""
self.navigationController?.navigationBar.shadowImage = UIImage()
self.navigationController?.navigationBar.translucent = true
// This is being called after the back button is being pressed. Which means this else function overrides my backButtonPressed() therefore making my navigation bar in the new VC not the correct color.
}
}
}
正如您在我的笔记中看到的,在调用 backButtonPressed()
之后,将再次调用此 else 函数。因此,它不会在新 VC 中给我所需的红色,而是让它保持半透明。如何在调用 backButtonPressed 时停止调用此 else 函数?
最佳答案
viewDidLayoutSubviews
永远不应参与响应用户事件。它是一种很少使用的内部生命周期方法,除非您将程序化 NSLayoutConstraints
添加或修改到已经添加到 Storyboard 中的方法。它被调用得非常频繁且明显冗余。
改为使用表委托(delegate)方法。特别是 UITableViewDelegate
继承自 UIScrollViewDelegate
所以引用:
然后查询 tableView
本身的可见性信息,例如indexPathsForVisibleRows
:
关于ios - 使用 viewDidLayoutSubviews 检测 UITableView 滚动会导致过多的回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39088037/
我很难弄清楚为什么 Erica Sadun 在她的食谱示例 Ch07-11 中执行以下操作(在 viewDidLayoutSubviews 中调用 viewDidAppear)。也许这两种方法应该调用
我有一个在 UIStoryboard 中使用 UITableView 设置的 View Controller 。 UITableView 在所有四个边上都被限制在 Controller 的 SafeA
首先,我应该提一下,这主要是一个效率问题。 有很多关于在哪里进行帧计算的讨论,其中 viewWillAppear 太早而 viewDidAppear 太晚( View 已经可见)。 常见的答案是在 v
我正在阅读 UIViewController 的 viewDidLayoutSubviews 的描述: Called to notify the view controller that its vi
我正在寻找仅调用一次的 viewDidLayoutSubviews 的替代方案。 我使用此代码将登录移出 View : override func viewDidLayoutSubviews() {
iOS 13 中的 viewdidlayoutsubviews 进行了一些更改,导致在完成第一次调用后,它会在 View Controller 生命周期的后期调用(在改变框架时)。这会在应用程序中产生
我听说viewDidLayoutSubviews当我们使用约束时,这是更改布局的最佳位置。 所以我跳到viewDidLayoutSubviews 我创建了三个 UIViews和 SubViewed他们
viewWillAppear 和有什么区别和 viewDidLayoutSubviews . 我知道 viewDidLoad View 的大小是未知的。其他两种方法呢?哪个更好使用调整 subview
我有一个 View Controller ,其中 View 是手动布局的(没有 xib)。这是在 viewDidLayoutSubviews 中完成的.我想为其中一个 View 设置动画,但动画不起作
Apple 文档关于 viewDidLayoutSubviews说: When the bounds change for a view controller's view, the view adj
我正在使用下面的代码添加一个按钮渐变 extension UIView { func applyGradient(colors: [UIColor]) { self.apply
我有一个只应偶尔出现的 UIButton。在 viewDidLayoutSubviews 中,我执行了以下操作: override func viewDidLayoutSubviews() {
我在 ovalView 中有一个 imageView,受自动布局限制。 在 viewDidLayoutSubviews() 中,我正在创建一个 UILabel let label = UILabel(
我在 viewDidLayoutSubviews 下有代码,目的是在开始时使图像透明(alpha = 0),然后使用 viewDidAppear 下的代码慢慢淡入(进入 alpha = 1) >。另外
我有一些方形按钮,我想为其添加与按钮高度成比例的圆角。在我的应用程序的过去版本中,我使用 viewDidLayoutSubviews() 毫无问题地实现了此功能。出于某种原因,在推出具有我调整过的其他
这让我发疯。只有在第一次运行时,viewDidLayoutSubviews 才会被调用两次。 这是我使用的代码: class CICViewController: UIViewController {
当 View Controller 的 View 首次显示时,我想运行一个动画,其中 View Controller 中的所有元素都从屏幕底部外部滑动到它们的自然位置。为此,我在 viewDidLay
设置: 我有一个由 View 和 Container View 组成的 View Controller 。 我已经使用类大小设置了View 和Container View。 下面的代码添加了渐变效果:
当我移动 UISlider 时,我的 ViewController 的 viewDidLayoutSubviews() 方法被重复调用。 (我需要它被调用一次,这样我才能计算出 subview 的大小
感恩节快乐,如果你庆祝它! 我在 Storyboard上有一个 UIImageView,设置了 4 个约束。中心 x 约束有一个标识符集(通过 Storyboard)“imageViewTwoCent
我是一名优秀的程序员,十分优秀!