- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
当编译我的项目时,编译器卡在这个类上,在尝试构建大约 5 分钟后,我收到一条消息,告诉我系统内存不足并关闭一些应用程序以继续。此代码中是否存在可能导致编译器崩溃的内容?
我正在使用 XCode9,看到我的整个计算机都崩溃了,这可能是 XCode 的错误吗?
import UIKit
class ConferenceNumberViewController: UITableViewController, UINavigationControllerDelegate {
let sections = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]
let countries = CallIn.Data.allCountries
var indexedCountries =
[
"A": [String](),
"B": [String](),
"C": [String](),
"D": [String](),
"E": [String](),
"F": [String](),
"G": [String](),
"H": [String](),
"I": [String](),
"J": [String](),
"K": [String](),
"L": [String](),
"M": [String](),
"N": [String](),
"O": [String](),
"P": [String](),
"Q": [String](),
"R": [String](),
"S": [String](),
"T": [String](),
"U": [String](),
"V": [String](),
"W": [String](),
"X": [String](),
"Y": [String](),
"Z": [String]()
]
var countryNumberIndex: Int = 0
var indexedConferenceNumbers = CallIn.Data.indexedConferenceNumbers
var selectedConferenceNumber: CallIn.ConferenceNumber!
override func viewDidLoad() {
super.viewDidLoad()
countryAndConference = true
// Do any additional setup after loading the view.
//hide back button according to design
navigationItem.setHidesBackButton(true, animated: false)
for section in sections {
for country in countries {
let searchCharacter: Character = section.characters.first!
let countryCheck: Character = country.characters.first!
let compare = countryCheck == searchCharacter
if compare {
indexedCountries[section]!.append(country)
}
}
}
// indexedConferenceNumbers = indexedConferenceNumbers.sort(sortFunc) // moved the sorting to the Data class
}
/*func sortFunc(num1: CallIn.ConferenceNumber, num2: CallIn.ConferenceNumber) -> Bool {
return num1.country == num2.country ? (num1.typeOfNumber > num2.typeOfNumber) : (num1.country < num2.country)
}*/ // moved the sorting to the Data class
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// custom section view
override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
let header: UITableViewHeaderFooterView = view as! UITableViewHeaderFooterView //recast your view as a UITableViewHeaderFooterView
header.contentView.backgroundColor = Design.Colours.lightBlue // make the background light grey
if (accessibilityON){
header.textLabel!.font = UIFont(descriptor: UIFontDescriptor.regularDescriptor(UIFontTextStyle.body.rawValue), size: 0)
} else { header.textLabel!.font = UIFont.systemFont(ofSize: 13)}
// header.textLabel!.textColor = Design.Colours.subtextDarkGrey //make the text dark grey
// header.textLabel!.font = UIFont.systemFontOfSize(13) // set size of text
//header.alpha = 0.5 //make the header transparent
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CountryCell", for: indexPath)
let country = cell.viewWithTag(511) as! UILabel
let number = cell.viewWithTag(512) as! UILabel
let type = cell.viewWithTag(513) as! UILabel
// we have to calculate the index (jump) because the conference numbers list is single array (there are no sections)
var jump = 0
for index in 0...(indexPath as NSIndexPath).section {
(index == (indexPath as NSIndexPath).section) ? (jump = jump + (indexPath as NSIndexPath).row) : (jump = jump + indexedCountries[sections[index]]!.count)
}
country.text = indexedConferenceNumbers[jump].country
number.text = indexedConferenceNumbers[jump].conferenceNumber
type.text = indexedConferenceNumbers[jump].typeOfNumber
return cell
}
override func numberOfSections(in tableView: UITableView) -> Int {
return sections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return indexedCountries[sections[section]]!.count
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if (countriesPerSection("\(sections[section])").count == 0) {
return nil
}
return sections[section] as String
}
//index on the right side of the screen
override func sectionIndexTitles(for tableView: UITableView) -> ([String]!){
return self.sections
}
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
if (countriesPerSection("\(sections[section])").count == 0) {
return 0.1
}
return 30.0
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if let indexPath = self.tableView.indexPathForSelectedRow {
tableView.deselectRow(at: indexPath, animated: true)
let selectedCell = tableView.cellForRow(at: indexPath) as UITableViewCell!
let country = selectedCell?.contentView.viewWithTag(511) as! UILabel
let number = selectedCell?.contentView.viewWithTag(512) as! UILabel
let type = selectedCell?.contentView.viewWithTag(513) as! UILabel
// Set the number to be passed to SettingDetailsViewController after the unwind segue.
selectedConferenceNumber = CallIn.ConferenceNumber(country: country.text!, conferenceNumber: number.text!, typeOfNumber: type.text!, isoCode: "")
}
}
private func countriesPerSection(_ section: String) -> [String] {
var matches = [String]()
for country in indexedCountries["\(section)"]! {
matches.append(country)
}
return matches
}
private func conferenceNumbersPerCountry(_ country: String) -> Array<CallIn.ConferenceNumber> {
var matches = Array<CallIn.ConferenceNumber>()
for numbers in indexedConferenceNumbers {
if numbers.country == country {
let conferenceNumber = CallIn.ConferenceNumber(country: numbers.country, conferenceNumber: numbers.conferenceNumber, typeOfNumber: numbers.typeOfNumber, isoCode: numbers.isoCode)
matches.append(conferenceNumber)
}
}
return matches
}
@IBAction private func goBack(_ sender: UIBarButtonItem) {
self.navigationController!.popViewController(animated: true)
}
}
最佳答案
Swift 编译器可能在处理如此大的字典时遇到问题,并试图为 indexedCountries
变量推断出正确的类型。
一种解决方案是提供类型:
var indexedCountries: [String, [String]] =
更好的解决方案是避免这样的代码。将硬编码字典更改为以下内容:
var indexedCountries = [String, [String]]()
然后在 viewDidLoad
中你可以填充它:
for letter in sections {
indexedCountries[letter] = [String]()
}
这避免了很多额外的输入,避免了潜在的拼写错误,并使编译器的工作变得非常简单(编译速度更快)。
您还可以将 sections
的声明更新为:
let sections: [String] = [ "A", ... ]
关于swift - 编译应用程序时 Macbook 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46892789/
This question already has an answer here: Character constant too long for it's type (1个答案) 1年前关闭。 我是
每次我执行 Scala 程序时,Eclipse 都会创建一个新的“运行配置”。这样做的问题是我需要自定义默认的运行配置(需要更改工作路径)。因此,我第一次创建和自定义运行配置时一切正常,但任何后续尝试
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 5 年前。 Improv
基本上我正在做的是创建一个充当启动器的 swing 应用程序。它所做的只是为用户提供了 3 个选项,他们可以从中选择打开一个新的 java 应用程序。 3 个不同的 java 应用程序都有不同的主题,
这个问题已经有答案了: Make a py2exe exe run without a console? (2 个回答) 已关闭 9 年前。 我不希望在打开 python 应用程序时在后台打开 cmd
我曾经尝试编译一个我为国际象棋游戏编写的 C 程序(感谢 YouTube 的 Bluefever Software 提供的教程),但是当我去编译该程序时,我执行了这行代码: C:\TDM-GCC-64
这是一段代码,通过从一个文件获取输入并在另一个文件中给出输出来执行数字的平方。 #include #include void main() { FILE *fp1, *fp2; char
#include using namespace std; class foo { private: static int cnt; // number in memory stat
我做了一个简单的 hello world 程序。我单击“开始调试”,窗口显示“项目已过期。您要构建它吗?”当我单击"is"时,下一个窗口显示“存在构建错误。您要继续并运行上次成功的构建吗?”。我再次选
这是一个程序,有人在其中输入密码并尝试三次猜密码。当我编译它时,我遇到了多个错误,其中一个包括第 13 行,它基本上说它找不到包含在 Password_Program 类中的类似函数。 #includ
我想将我的游戏导出到 .jar 文件中。它导出;当我运行它时,框架出现了,但面板没有加载。我的框架和面板位于两个不同的类文件中,但我认为这没有什么区别。而且,它在 Eclipse 中完全可以工作。我在
我粘贴了程序以从 codenameone 开发人员指南中创建一个按钮,并且我在 netbeans 中使用了该代码,但是当我单击“运行”时,它在模拟器中没有显示任何内容 最佳答案 您删除了 hi.sho
当我执行这个程序时,它并没有终止。 例如,如果我给它输入 A,输出将是: 65 7 1000001 0 65 7 1000001 ... 我的代码: #include #include void
考虑下面的基本客户端和服务器程序(只是骨架/说明我的问题)。客户端启动与服务器的连接,提示用户输入消息,然后发送到服务器并打印到屏幕。 如果我在循环中间突然退出客户端程序(例如通过关闭终端窗口),有时
我运行一个非常简单的单线程 Java 程序。当我在 Ubuntu 下使用命令检查线程时 ps -eLf 它显示操作系统级别有 14 个线程。我希望当程序有一个线程时只有一个线程,如果程序有 x 个线程
当我从命令行运行类似以下内容的代码时,真正发生了什么? > scala hello.scala 是否有hello.class生成,执行然后丢弃?还是在这种情况下Scala表现得像翻译一样?我只是在想,
程序正在从网络摄像机接收以字节为单位的图像数据,然后处理图像。程序第一次启动时使用470Mb RAM,每1秒增加到15Mb,一直持续到没有足够的空间而计算机挂起。 方法 getImage() 每 10
当我运行我的 selenium 程序时,它显示错误,如何解决这个问题? import org.openqa.selenium.By; public class sss { public sta
我写了一个简单的程序,试图查看内存中的变化,但没有任何变化。无论我是否运行代码,总是会出现大约 20% 左右的直线水平线。 #include using namespace std; int main
我是 c/c++ 领域的新手,我已经在虚拟机上沉迷太久了。 我正在修改我们在整个公司使用的现有 C++ 工具。该工具正在所有主要操作系统(Windows、Mac、Ubuntu、Solaris 等)上使
我是一名优秀的程序员,十分优秀!