Talk:Xcode/Archive 1: Difference between revisions

Content deleted Content added
MalnadachBot (talk | contribs)
m Fixed Lint errors in Cyberbot II's signature (Task 1)
m Archiving 1 discussion(s) from Talk:Xcode) (bot
 
(4 intermediate revisions by the same user not shown)
Line 209:
 
:[[WP:BOLD|You have permission to update it]]. Just click on the [±] button to edit the template page with the version information. Note that the build number, reference for the build number, and release date information should all be updated. [[User:Guy Harris|Guy Harris]] ([[User talk:Guy Harris|talk]]) 08:23, 1 April 2018 (UTC)
 
== max macOS to run ==
 
The table "Xcode 7.0 - 10.x (since Free On-Device Development)" has a column "min macOS to run". I added a column "max macOS to run" including the one data point for which I had information. On 21:02, 25 March 2019‎ the change was undone by Speakus with the comment "ugly column which does not matter". As an Xcode user, this information matters to me because it tells me, for example, that if I upgrade from macOS 10.13 to 10.14 I will lose the ability to use Xcode 8.3.3. As for "ugly", I don't think aesthetics are the criterion for including information. [[User:CLandau|CLandau]] ([[User talk:CLandau|talk]]) 17:46, 26 March 2019 (UTC)
 
: Table too ugly now with this edit cause this info exist only for one Xcode version. Probably it could be added as column "notes" (or similar) after 'Downloadable simulators'. Anyway it would be nice to have some proof link. Also I guess '10.13' is not last cause 10.13.6 is last. So in the 'notes' column you could add something like: {{refn|Unable to run since MacOS 10.14{{refn|some prooflink}}}} or (may be better) add to next version note like this: {{refn|oldest version Xcode possible to run since MacOS 10.14{{refn|some other prooflink}}}}. Please do not undo good edits to make attention. You always could ask my attention by adding any comments on my talk page: https://en.wikipedia.org/wiki/User_talk:Speakus [[User:Speakus|Speakus]] ([[User talk:Speakus|talk]]) 18:12, 26 April 2019 (UTC)
 
:: I added the column :) Fill free to add any useful info to that column (but prooflinks is really appreciated) [[User:Speakus|Speakus]] ([[User talk:Speakus|talk]]) 18:34, 26 April 2019 (UTC)
 
{{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">—&nbsp;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">—&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-->
 
== 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)