- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在更新 UIScrollView
的大小以适应我的 UITableView
高度变化时遇到了一些问题。
我的 UITableView
不可滚动。相反,我的 View 大小会根据 UITableView
中的单元格数量而变化。
我有一个 UIViewController
用于加载 3 个不同的数据集。 (这需要经常更新我的 UITableView 以适应不同数量的数据)
所以当我加载第一个数据集时它工作正常。
但是,如果我在那之后加载一个新的,具有不同数量的细胞。我的 UIScrollView 的 contentSize 现在是错误的。 (无论以前的数据集是什么,它都会保持大小)。
这是一个例子:
我从具有更多单元格的数据集出发的地方。少花钱。你可以看到我能够向下滚动比我应该能够的更多。 (contentSize 的结尾应该在白色区域后 16 个点处停止。
在尝试解决这个问题一段时间后,我确实设法让一些东西工作了。我从 API 获取数据,有时需要很长时间才能获取。但是,当它更新完我的 tableView 中的所有数据后,我可以使用以下代码行将内容大小固定为我想要的大小:
self.scrollView.contentSize = CGSize(width:self.view.bounds.width, height: self.contentView.frame.height)
在那之后的第一个行动就是把它放得更早。 (在我尝试更新数据之前。)但不幸的是,这似乎根本没有做任何事情。
那么,如何在使用 CoreData 中的数据重新加载 UITableView 后(在尝试获取新数据之前)正确设置我的 contentSize?
这是加载数据的函数。 (这是立即发生的。这是重新加载后此函数的结束,我需要修复内容大小。
func loadPortfolio() {
println("----- Loading Portfolio Data -----")
// Set the managedContext again.
managedContext = appDelegate.managedObjectContext!
// Check what API to get the data from
if Formula == 1 {
formulaEntity = "PortfolioBasic"
println("Setting Entity: \(formulaEntity)")
formulaAPI = NSURL(string: "http://api.com/json/monthly_entry.json")
} else if Formula == 2 {
formulaEntity = "PortfolioPremium"
formulaAPI = NSURL(string: "http://api.com/json/monthly_proff.json")
println("Setting Entity: \(formulaEntity)")
} else if Formula == 3 {
formulaEntity = "PortfolioBusiness"
println("Setting Entity: \(formulaEntity)")
formulaAPI = NSURL(string: "http://api.com/json/monthly_fund.json")
} else {
println("Errror - Formula out of range.")
}
// Delete all the current objects in the dataset
let fetchRequest = NSFetchRequest(entityName: formulaEntity)
let a = managedContext.executeFetchRequest(fetchRequest, error: nil) as! [NSManagedObject]
stocks.removeAll(keepCapacity: false)
for mo in a {
stocks.append(mo)
}
// Saving the now empty context.
managedContext.save(nil)
// Setting the first cell to be white
cellAlteration = 0
// Reload the tableview with the new data.
self.pHoldingsTable.reloadData()
tableHeight.constant = CGFloat(stocks.count*50)
// This doesn't work here for some reason?
self.scrollView.contentSize = CGSize(width:self.view.bounds.width, height: self.contentView.frame.height)
println("Finished loading portfolio")
self.view.hideLoading()
dispatch_async(dispatch_get_global_queue(Int(QOS_CLASS_USER_INITIATED.value), 0)) {
self.updatePortfolio()
}
}
我也试过将 scrollView 相关的行放在约束更新之前,但这也没有用。
但是。下面是我的 updatePortfolio() 函数,它使用完全相同的代码行,并且工作正常。一旦完成运行,我的 contentView 就会被设置为正确的大小。
func updatePortfolio() {
println("Updating Portfolio")
if Reachability.isConnectedToNetwork() == false {
println("ERROR: - No Internet Connection")
} else {
// Delete all the current objects in the dataset
let fetchRequest = NSFetchRequest(entityName: formulaEntity)
let a = managedContext.executeFetchRequest(fetchRequest, error: nil) as! [NSManagedObject]
for mo in a {
managedContext.deleteObject(mo)
}
// Removing them from the array
stocks.removeAll(keepCapacity: false)
// Saving the now empty context.
managedContext.save(nil)
// Set up a fetch request for the API data
let entity = NSEntityDescription.entityForName(formulaEntity, inManagedObjectContext:managedContext)
var request = NSURLRequest(URL: formulaAPI!)
var data = NSURLConnection.sendSynchronousRequest(request, returningResponse: nil, error: nil)
var formula = JSON(data: data!)
// Loop through the api data.
for (index: String, portfolio: JSON) in formula["portfolio"] {
// Save the data into temporary variables
stockName = portfolio["name"].stringValue.lowercaseString.capitalizedString
ticker = portfolio["ticker"].stringValue
purchasePrice = portfolio["purchase_price"].floatValue
weight = portfolio["percentage_weight"].floatValue
// Set up CoreData for inserting a new object.
let stock = NSManagedObject(entity: entity!,insertIntoManagedObjectContext:managedContext)
// Save the temporary variables into coreData
stock.setValue(stockName, forKey: "name")
stock.setValue(ticker, forKey: "ticker")
stock.setValue(action, forKey: "action")
stock.setValue(purchasePrice, forKey: "purchasePrice")
stock.setValue(weight, forKey: "weight")
// Doing a bunch of API calls here. Irrelevant to the question and took up a ton of code, so skipped it to make it more readable.
// This can simply be set, because it will be 0 if not found.
stock.setValue(lastPrice, forKey: "lastPrice")
// Error handling
var error: NSError?
if !managedContext.save(&error) {
println("Could not save \(error), \(error?.userInfo)")
}
// Append the object to the array. Which fills the UITableView
stocks.append(stock)
}
NSOperationQueue.mainQueue().addOperationWithBlock({ () -> Void in
// Setting the first cell to be white
cellAlteration = 0
self.tableHeight.constant = CGFloat(self.stocks.count*50)
self.pHoldingsTable.reloadData()
self.scrollView.contentSize = CGSize(width:self.view.bounds.width, height: self.contentView.frame.height)
println("Finished Updating Portfolio")
})
}
}
我还尝试将 tableHeight 约束放在重新加载之上,就像它在更新函数中一样。但这并没有什么不同。
这是我的 UIScrollView 的设置方式:
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
scrollView.frame = view.bounds
scrollView.contentSize = CGSize(width:self.view.bounds.width, height: contentView.frame.height)
}
这总是第一次得到正确的尺寸。但是因为tableView变化的时候并没有调用这个函数。它不会自动更新 contentSize。
我的 contentView.frame.height 会根据 UITableView 中的单元格数量而变化。这不是一个固定的高度。 (我从不希望我的 UITableView 本身在它的框内滚动)
此外,如果我的问题与约束相关而不是在我的函数中,我将以编程方式进行。我没有使用 Storyboard或 XIB 文件。
如有任何帮助,我们将不胜感激!
最佳答案
我认为您正在寻找的是分组 TableView 样式。
可以肯定的是:您唯一想要的就是不要在最后一个单元格下方有无限单元格,对吗?如果是这样,您应该使用分组 TableView 样式。
使用这种风格可以节省大量工作。如果我理解你的问题。
关于ios - 更新基于 UITableView 高度的 UIScrollView 的 contentSize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30457407/
我有下面的图表,它填充了显示器的宽度和高度。高度始终只比屏幕大一点,因此会出现滚动条以显示底部 20 像素左右。 有没有办法让 Kendo UI 显示 100%,而不是 105% 的高度? 在线示例:
这个问题在这里已经有了答案: Why doesn't height: 100% work to expand divs to the screen height? (12 个答案) 关闭 9 年前
此页面 ( http://purcraft.com/madeinla/) 有问题,我正在尝试使用 iframe 元素显示此页面的内容:( http://purcraft.com/madeinla/ho
我在一个父 div 中有 2 个子 div。 Child1 是标题,Child2 是正文。我希望将 Child 2 的高度设置为 Parent - Child1 的高度。 Child2 有内容,所以它
我正在尝试用图像填充窗口。我正在使用 CSS 来尝试解决这个问题,但我想知道是否有一种方法可以最大化图像的宽度/高度,直到所有空白区域都被填满,但又不会破坏质量。 .rel-img-co
这个问题在这里已经有了答案: How to make a div 100% height of the browser window (41 个回答) 关闭 8 年前。
这可能是一个新手问题,但是是否可以将 Sprite 图标添加到带有文本的标签中? 例如: labeltext .icon { width: 30px height: 30px;
我有 3 个 div,分别是 header、content 和 footer。页眉和页脚具有固定的高度,并且它们被设计为 float 在顶部和底部。我想要使用 jquery 自动计算中间的 con
我有一个外部 div,其指定的宽度/高度(以毫米为单位)。 (mm只是赋值,不用于渲染)。 里面有另一个 div,其实际宽度/高度(以 px 为单位)。 两个 div 可以具有不同的比例。 我想要做的
我正在为一个非常简单的画廊 webapp 进行布局排序,但是当我使用 HTML5 文档类型声明时,我的一些 div(100%)的高度会立即缩小,我不能似乎使用 CSS 将它们丰满起来。 我的 HTML
我正在为一个非常简单的画廊 webapp 进行布局排序,但是当我使用 HTML5 文档类型声明时,我的一些 div(100%)的高度会立即缩小,我不能似乎使用 CSS 将它们丰满起来。 我的 HTML
我想更改 UISearchBar。文本字段的高度和宽度。我的问题是如何更改 iphone 中 UISearchBar 中的 UiSearchbar 高度、宽度、颜色 和 Uitextfield 高度?
我想要两个宽度和高度均为 100% 的 div。我知道子 div 不会工作,因为父 div 没有特定的高度,但有没有办法解决这个问题? HTML: CSS: body
我有几个带有“priceText”类的 div,我试图实现如果 div.priceText 高度小于 100px,则隐藏 this div 中的图像。 我无法让它工作。我已成功隐藏所有 .priceT
我正在尝试从 Image 列中列出的图像中获取实际图像尺寸,并将其显示在 Image Size 列中。 我遇到的问题是,我只能获取第一张图片的大小,该图片会添加到 Image Size 列的每个单元格
我正在使用一个插件,它要求我在加载图像后获取图像的宽度和高度,而不管图像的尺寸是如何确定的。
我有一个示例 pdf(已附),它包括一个文本对象和一个高度几乎相同的矩形对象。然后我使用 itextrup 检查了 pdf 的内容,如下所示: 1 1 1 RG 1 1 1 rg 0.12 0 0 0
我是 WPF 新手。我试图解决的一个问题是如何在运行时获得正确的高度。 在我的应用程序中,我将用户控件动态添加到代码隐藏中的 Stackpanel。 Usercontrol 包含一些 Texblock
在自定义 WPF 控件中,我想将控件的宽度设置为高度的函数。例如:Width = Height/3 * x; 实现此目的的最佳方法是什么,以便控件正确且流畅地调整大小(和初始大小)? 最佳答案 您可以
好吧,我本以为这是一个简单的问题,但显然它让我感到困惑。 当我尝试设置 RibbonComboBox 的高度时,它不会移动它的实际大小,而是移动它周围的框。 这是我的 XAML:
我是一名优秀的程序员,十分优秀!