Content deleted Content added
m Archiving 1 discussion(s) from Talk:Xcode) (bot |
m Archiving 1 discussion(s) from Talk:Xcode) (bot |
||
(3 intermediate revisions by the same user not shown) | |||
Line 219:
{{reflist-talk}}
== Too much "developing"? ==
The first line of the article reads:
"Xcode is an integrated '''''development''''' environment (IDE) for macOS containing a suite of software '''''development''''' tools '''''developed''''' by Apple for '''''developing''''' software for macOS, iOS, iPadOS, watchOS, and tvOS."
Is it ''really'' necessary to use the word "develop" four times in a single sentence? <!-- Template:Unsigned IP --><small class="autosigned">— Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/84.21.205.162|84.21.205.162]] ([[User talk:84.21.205.162#top|talk]]) 00:57, 5 December 2020 (UTC)</small> <!--Autosigned by SineBot-->
:You might want to ask [[Steve Ballmer#Public image|Steve Ballmer]] about that. :-)
:But, yes, that could use some editing. [[User:Guy Harris|Guy Harris]] ([[User talk:Guy Harris|talk]]) 20:12, 5 December 2020 (UTC)
Ha, good point. I just took a stab at it, feel free to tweak it. --[[User:Iritscen|Iritscen]] ([[User talk:Iritscen|talk]]) 20:13, 5 December 2020 (UTC)
== Good stuff ==
👍🖑 <!-- Template:Unsigned IP --><small class="autosigned">— 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-->
== 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 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.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)
|