Sorry if this is a common question but I don\'t know what it\'s called so I\'m having trouble searching for it.
How does this work:
view.autoresizing
These are C bit level operators.
| is binary or: 0001 | 0010 = 0011.
|
<< is a bit shift: 0001 << 1 = 0010.
<<
They are used for bitmasks.