Talk:Xcode: Difference between revisions

Content deleted Content added
Balder16 (talk | contribs)
Tags: Mobile edit Mobile app edit iOS app edit App talk reply
rv test
 
(4 intermediate revisions by 4 users not shown)
Line 15:
|archive = Talk:Xcode/Archive %(counter)d
}}
 
== A Commons file used on this page or its Wikidata item has been nominated for speedy deletion ==
The following Wikimedia Commons file used on this page or its Wikidata item has been nominated for speedy deletion:
* [[commons:File:Xcode 14 in macOS Ventura.png|Xcode 14 in macOS Ventura.png]]<!-- COMMONSBOT: speedy | 2023-05-09T14:38:36.559273 | Xcode 14 in macOS Ventura.png -->
You can see the reason for deletion at the file description page linked above. —[[User:Community Tech bot|Community Tech bot]] ([[User talk:Community Tech bot|talk]]) 14:38, 9 May 2023 (UTC)
 
import Cocoa class ViewController: NSViewController { var numbers = [Int](1...25) var currentNumber: Int? @IBOutlet weak var numberLabel: NSTextField! @IBOutlet var gridButtons: [NSButton]! override func viewDidLoad() { super.viewDidLoad() generateGridNumbers() } func generateGridNumbers() { numbers.shuffle() for (index, button) in gridButtons.enumerated() { button.title = "\(numbers[index])" } } @IBAction func nextNumberButtonPressed(_ sender: NSButton) { if numbers.count > 0 { currentNumber = numbers.removeFirst() numberLabel.stringValue = "Number: \(currentNumber!)" checkWinner() } else { numberLabel.stringValue = "Game over" } } func checkWinner() { // Implement your logic to check if a player has won the game } } [[Special:Contributions/169.224.9.204|169.224.9.204]] ([[User talk:169.224.9.204|talk]]) 17:52, 4 November 2023 (UTC)
 
== Xcode languages support ==
Line 30 ⟶ 23:
:https://developer.apple.com/xcode/cpp/ [[User:KelCodesStuff|KelCodesStuff]] ([[User talk:KelCodesStuff|talk]]) 20:38, 5 March 2025 (UTC)
::I was meaning to gather some references to rewrite that part and ended up getting busy with other stuff. For example, when it says third parties added support to other programming languages, that was a feature of the Plugins that aren't even supported anymore. [[User:Balder16|Balder16]] ([[User talk:Balder16|talk]]) 23:51, 5 March 2025 (UTC)
 
== A Commons file used on this page or its Wikidata item has been nominated for speedy deletion ==
The following Wikimedia Commons file used on this page or its Wikidata item has been nominated for speedy deletion:
* [[commons:File:Xcode 14 in macOS Ventura.pngsvg|Xcode 14 in macOS Ventura.pngsvg]]<!-- COMMONSBOT: speedy | 20232025-0506-09T14:3811T05:36:27.559273973693 | Xcode 14 in macOS Ventura.pngsvg -->
You can see the reason for deletion at the file description page linked above. —[[User:Community Tech bot|Community Tech bot]] ([[User talk:Community Tech bot|talk]]) 1405:3836, 911 MayJune 20232025 (UTC)
 
== Possibly incorrect LLVM tag for Xcode 16.2 ==
 
In the "Toolchain version history" table, the footnote on Xcode 16.2 indicates LLVM tag swift-6.0.3-RELEASE. But it is not possible to build LLVM on this tag using Xcode 16.2, because a [https://github.com/swiftlang/llvm-project/commit/94471e73fe3a6e5ddf700ed79941b1f1c8d2127b fix] for a [https://github.com/swiftlang/llvm-project/issues/9305 compile error] is missing from that release. Instead, tag swift-6.1-RELEASE is necessary for building with Xcode 16.2. This suggests a change should be made to the footnote, moving the referenced tag up to the nearest functioning tag, which is swift-6.1-RELEASE. [[User:Byron.C.Hawkins|Byron.C.Hawkins]] ([[User talk:Byron.C.Hawkins|talk]]) 13:40, 16 July 2025 (UTC)