Category: Raspberry Pi
-
From Apple to Raspberry Pi: Making Round Rectangle Buttons — The Movie
When I posted yesterday about GIMP and making Buttons for Python projects on the Raspberry Pi, I had thought someone would have a tutorial for the classic pre-iOS7 rounded rectangle button. I didn’t find any. Here is a video I put together of making those buttons in GIMP on the Raspberry Pi. At the end…
-
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: Making Classes in Python
Objective-C and Python are similar when it comes to defining new classes, but be careful with their differences. In Objective-C we would define a class with two files: a header and an implementation file. In the header we would declare properties like this And possibly public methods In the implementation file we would have the…