问题标签 [xcode6]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
shortcut - 我们还不能在 Playground 文件中使用占位符快捷方式
它看起来像一种错误。我尝试在操场上练习快速语言。
但是占位符快捷键(ctrl+slash)还不能在操场上使用。
然后我搜索了解决这个问题的解决方案。但是失败了。它在其他 swift 文件中运行良好。
有谁知道为什么不能或任何解决方案?
swift - 如何从另一个 Swift 文件导入 Swift 文件?
我只是想从另一个文件中包含我的 Swift 类,比如它的测试
PrimeNumberModel.swift
PrimeNumberModelTests.swift
两个 swift 文件都在同一个目录中。
ios - XCode 6 Playground 测量代码性能
是否有任何快速的方法来评估在新 XCode 6 操场上编写的某个代码部分的性能/运行时?
我想通过比较某些解决方案的不同编码风格及其对代码性能的影响来开始学习 Swift。
ios - 如何使用 NSLog 调试 iOS 8 扩展?
在viewDidLoad
iOS 8扩展中。NSLog
Xcode 中没有任何输出。 NSLog
虽然在容器应用程序中照常工作。
如何从扩展的调试消息中获取输出?
ios - #pragma 标记定义 - 快速
从文档,
Swift 编译器不包含预处理器。相反,它利用编译时属性、构建配置和语言特性来完成相同的功能。出于这个原因,预处理器指令不会在 Swift 中导入。
那么如何在 Swift 中使用这个强大的功能(#Pragma mark -)?
ios - IOS7.1 SDK可以用XCode6.3吗
是否可以将 XCode6 beta 与 IOS 7.1 SDK 一起使用?新工具要好得多,但我需要为 IOS7 构建
ios - 如何设置今日小部件扩展的高度?
如何在通知中心更改我的应用程序今日扩展的高度?
我使用 Interface Builder 和 Code 进行了尝试,Interface Builder 显示高度为 600 的视图,但它没有在设备上应用此高度。
看来我不能让它大于大约 80 像素...
xcode - Can't close license agreement dialog when running XCode 6 after installation
After installing XCode 6 and running it, the license dialog appears. I click "Agree". And it does... nothing. The dialog is still there.
Even if the dialog is active, I can still access Xcode menu. But it crashes as soon as I try to use anything.
I've tried:
- closing/launching it again
- several reboot sequence after install/uninstall
- uninstalling XCode 5.1 (which I used recently for several apps with no problem)
- removing
~/Library
Xcode related files (preferences) - safe boot mode
- using
xcodebuild -license
and validating license in console mode - repairing permissions with diskutility
- running maintenance scripts
- tried creating another administrator account and test through it
Everytime the dialog appears, I cannot close it.
Found same problem in the Apple developer forums where the user successfully terminated the install by rebooting. It does not work on my configuration (Macbook Pro, OS X 10.9.3)
Can't wait to test Swift. Anybody's having same problem?
Edit 06/19: - Apple has flagged my reported bug as a duplicate (and closed it). Too bad we have no way to search for other bugs in their reporting system (and any comment, workaround, ...). Next beta is available, not yet installed but hope it's fixed.
Edit 06/20: - Still the same problem with Xcode 6 beta 2 :-(
ios - Xcode 6.xx 中出现了不合格的设备部分
安装Xcode 6后,我的设备移至灰色部分Ineligible Devices
,我无法选择它们作为部署目标:
更新:
此错误发生在所有版本的Xcode 6.x.x
. 导致此问题的原因有很多
查看此解决方案列表 以获取更多详细信息。
cocoa - Xcode 6 iOS 创建 Cocoa Touch 框架 - 架构问题
我正在尝试为 iOS 应用程序制作一个动态框架。感谢新版本的 Xcode (6),我们可以在创建新项目时选择 Cocoa Touch Framework,不再需要添加聚合目标、运行脚本等来制作。构建框架时我没有问题。但是当我尝试在 iOS 应用程序中使用它时,我遇到了一些架构问题。
好吧,我尝试更改框架项目和目标的设置(架构和仅构建有效架构和有效架构)。我为 iOS 应用程序项目做了同样的事情,但没有任何效果。我觉得有些东西我不明白。
例如,当我使用命令行“xcrun lipo -info MyFramework”为仅 i386(iOS 模拟器)检查构建框架时,我遇到的问题是
ld:警告:忽略文件/Library/Frameworks/MyFramework.framework/MyFramework,文件是为x86_64构建的,它不是被链接的架构(i386)......
如果有人可以帮助我获得适用于所有 iOS 架构(包括模拟器)的框架。