Talk:Xcode: Difference between revisions

Content deleted Content added
Implementing WP:PIQA (Task 26)
rv test
 
(12 intermediate revisions by 9 users not shown)
Line 1:
{{Talk header|archive_age=30|archive_bot=Lowercase sigmabot III}}
{{WikiProject banner shell|class=C|
{{WikiProject Computing|importance=mid}}
Line 5:
}}
{{afd-merged-from|History of Xcode|History of Xcode|21 June 2010}}
 
{{User:MiszaBot/config
|archiveheader = {{talkarchivenav|noredlinks=y}}
Line 16:
}}
 
== GoodXcode stufflanguages support ==
 
I noticed the part where it talks about Xcode language support should be updated for the languages it supports today. Does it really have any tooling for Java or Ruby nowadays? And the extra languages that needed plugins probably aren’t supported anymore either. [[User:Balder16|Balder16]] ([[User talk:Balder16|talk]]) 02:25, 12 February 2025 (UTC)
👍🖑 <!-- Template:Unsigned IP --><small class="autosigned">—&nbsp;Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/190.107.252.25|190.107.252.25]] ([[User talk:190.107.252.25#top|talk]]) 21:26, 9 May 2022 (UTC)</small> <!--Autosigned by SineBot-->
 
:I searched the Apple Developer documentation, and the only other supported language I could find was C++. There's no page on Java or Ruby.
== A Commons file used on this page or its Wikidata item has been nominated for speedy deletion ==
:https://developer.apple.com/xcode/cpp/ [[User:KelCodesStuff|KelCodesStuff]] ([[User talk:KelCodesStuff|talk]]) 20:38, 5 March 2025 (UTC)
The following Wikimedia Commons file used on this page or its Wikidata item has been nominated for speedy deletion:
::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)
* [[commons:File:Xcode Logo.png|Xcode Logo.png]]<!-- COMMONSBOT: speedy | 2022-09-23T07:52:10.221446 | Xcode Logo.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]]) 07:52, 23 September 2022 (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)
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)