Subscribe to The infinite monkey theorem

Stay up to date! Get all the latest & greatest posts delivered straight to your inbox

xcode

A collection of 10 posts

Compiling Facebook SDK with Xcode 6 cover image
xcode

Compiling Facebook SDK with Xcode 6

Compiling Facebook SDK with Xcode 6 is not yet an option.

Set application name depending on the build type cover image
ios,  xcode

Set application name depending on the build type

Having a different application name for release and development builds.

Positioning views relative to one another with auto-layout cover image
xcode,  auto-layout,  swift

Positioning views relative to one another with auto-layout

Positioning views relative to one another with auto-layout was fairly tricky until...

Debugging view constraints with Xcode 7 cover image
xcode,  objc,  swift,  auto-layout

Debugging view constraints with Xcode 7

A small button named 'Debug view hierarchy', displays current view hierarchy in 3D.

Debugging xxx was deallocated while key value observers were still registered with it cover image
swift,  xcode

Debugging xxx was deallocated while key value observers were still registered with it

Debugging errors that are a result of observers being added to an object and not removed from it can be hard.

Creating NSManagedObject subclasses from a model in Xcode 8 cover image
xcode,  swift,  ios

Creating NSManagedObject subclasses from a model in Xcode 8

In Xcode 8, it is no longer possible to create NSManagedObject subclasses...

Compiler Error when using Generics and nested functions, Command failed due to signal: Segmentation fault: 11 cover image
swift,  ios,  xcode

Compiler Error when using Generics and nested functions, Command failed due to signal: Segmentation fault: 11

The following code is causing a compiler crash when compiled with Swift 3 and Xcode 8...

UICollectionView terminating with uncaught exception of type NSException cover image
xcode,  ios,  swift

UICollectionView terminating with uncaught exception of type NSException

ne of our views that contains a UICollectionView started crashing once in a while...

Symbolification in iOS applications cover image
ios,  xcode

Symbolification in iOS applications

Symbolification is the process of mapping machine addresses into the source code. The tricky part is that by default .DSYM file is only generated for release builds.

Framework with C code cover image
swift,  ios,  xcode

Framework with C code

How to create a framework that uses C with Xcode