SDL: docs/README-macos.md: Updated Xcode instructions.

From 61881eb0a92b1ca29f8c941ec457e3d0a3c50952 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Sat, 20 Nov 2021 13:14:00 -0500
Subject: [PATCH] docs/README-macos.md: Updated Xcode instructions.

Fixes #960.
---
 docs/README-macos.md | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/docs/README-macos.md b/docs/README-macos.md
index 08511bbbd9e..67c53e23721 100644
--- a/docs/README-macos.md
+++ b/docs/README-macos.md
@@ -230,13 +230,18 @@ the "New Project" and "Add target" menus. What could be easier?
 
 Some of you won't want to use the Stationary so I'll give some tips:
 
-* Create a new "Cocoa Application"
-* Remove "main.c" from your project
-* Remove "MainMenu.nib" from your project
+(this is accurate as of Xcode 12.5.)
+
+* Click "File" -> "New" -> "Project...
+* Choose "macOS" and then "App" from the "Application" section.
+* Fill out the options in the next window. User interface is "XIB" and
+  Language is "Objective-C".
+* Remove "main.m" from your project
+* Remove "MainMenu.xib" from your project
+* Remove "AppDelegates.*" from your project
 * Add "$(HOME)/Library/Frameworks/SDL.framework/Headers" to include path
 * Add "$(HOME)/Library/Frameworks" to the frameworks search path
 * Add "-framework SDL -framework Foundation -framework AppKit" to "OTHER_LDFLAGS"
-* Set the "Main Nib File" under "Application Settings" to "SDLMain.nib"
 * Add your files
 * Clean and build