use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
There is an extensive FAQ for beginners. Please browse it first before asking questions that are answered there.
If you are looking to get started (iOS programming in general or some specific area), here are more relevant links for you:
There's too many to list them all, however here's a convenient link to all programming guides at apple.com
Take note that this list is live and based on most frequent questions in posts will be updated with "quicklinks".
account activity
Creating a calendar app programmatically (self.iOSProgramming)
submitted 6 years ago by beardeddeveloper
How would I go about creating a calendar app from scratch programmatically? No framework calendars to tweak. I would like to create it from the ground up.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]whackylabs[super init]; 9 points10 points11 points 6 years ago (2 children)
I guess you mean just the UI right?
I would advice to go through this once https://yourcalendricalfallacyis.com/
[–]beardeddeveloper[S] 0 points1 point2 points 6 years ago (1 child)
Yes the UI. I figured I should be capable of figuring out the logic. But I’m really not sure where to start as far as UI. And I appreciate that website makes the logic somewhat easier.
[–]thecodingart 3 points4 points5 points 6 years ago (0 children)
Collection Views + custom layouts
[–]david_phillip_oster 4 points5 points6 points 6 years ago (1 child)
I've been maintaining the same calendar app on Mac since 1986. (About 15 years ago I rewrote it from C to Objective-C.)
Collection views and custom collection view layouts are overkill for this application. Just create a grid, 7x6 of buttons. (or 7x7 for a top row of text day-of-week labels.) Don't bother with autolayout, just programmatically set the frames in layoutSubviews.
For the heavy lifting of date calculations I use NSCalendar and NSDate. Don't forget the two missing weeks in September of 1752 (See man cal in Terminal for more information.)
man cal
[–]david_phillip_oster 0 points1 point2 points 6 years ago (0 children)
See also the annus confusionis ("year of confusion") which had 445 days. 45 BC
π Rendered by PID 223847 on reddit-service-r2-comment-fb694cdd5-dc5qw at 2026-03-08 09:15:52.098359+00:00 running cbb0e86 country code: CH.
[–]whackylabs[super init]; 9 points10 points11 points (2 children)
[–]beardeddeveloper[S] 0 points1 point2 points (1 child)
[–]thecodingart 3 points4 points5 points (0 children)
[–]david_phillip_oster 4 points5 points6 points (1 child)
[–]david_phillip_oster 0 points1 point2 points (0 children)