Skip to content

Instantly share code, notes, and snippets.

View oliverkrakora's full-sized avatar

Oliver oliverkrakora

View GitHub Profile
@oliverkrakora
oliverkrakora / apple-dev-issues
Last active May 10, 2024 15:36
apple dev issues
# A reference to document problems that I encountered related to apple development and how to fix them
## Git
### Define git credential helper of choice
`git config --global credential.helper osxkeychain`
### Add credentials to git credential helper
`git credential fill`
now you need to enter the following information, confirming each line of input with enter, when you are done leave one line empty and confirm again with enter
@oliverkrakora
oliverkrakora / AutoLayout.md
Created February 4, 2020 19:27 — forked from NSExceptional/AutoLayout.md
The best damn AutoLayout guide I've ever seen

ℹ️ This article is also available on his blog.


Fundamentals

Layout and Drawing are two different things:

  • Layout defines only the positions and sizes of all views on screen.
  • Drawing specifies how each view is rendered (how it looks).