-
From Apple to Raspberry Pi: Living without Storyboards and Interface Builder
In iOS, avoiding Interface Builder is nearly impossible. IB is old – as old as the Xcode SDK itself. Interface builder was one of the components of NextStep, and thus one of the reasons Steve Jobs got his old job back, who then developed NextStep into the platform for all Apple products. In more recent…
-
From Apple to Raspberry Pi: Windows Buttons and Widgets — on Pi!
I’ve explored much of the basic coding in Python, but I’ll need a good user interface for the projects I’m doing. When it comes to the graphical user interface (GUI), Xcode and Python are on two different planets. With storyboards and interface builder, Xcode arguably spoils developers. There are times one does need to add…
-
From Apple to Raspberry Pi: Using Inheritance and Overrides
Object oriented languages have a concept called inhertance. A class can give its methods and properties to another class, which then replaces or expands the inherited class. We call the new class a subclass. When we replace a function or method we override the method or function. This allows the method or function of the…