Browse by tag: cappuccino (6)
google (1)
guide (2)
javascript (1)
misc (3)
moka (2)
nib2cib (3)
objective-c (1)
objective-j (6)
objective-php (2)

Recent Posts

Fork my projects @ GitHub

blog


Cappuccino & Google WebFonts : Beautify your Capp app in seconds

Posted on

cappuccinogoogleobjective-j

Google has announced some free open source webfonts. They currently provide only a small library of Fonts but even these can add an extra dimension to your Cappuccino app.

Simply add the necessary link tags to your header in index.html and index-debug.html to add the desired font, e.g.

<link rel="stylesheet" type="text/css"
    href="http://fonts.googleapis.com/css?family=Lobster">

Now use CPFont fontWithName:size: and you are away! E.g.

[label setFont:[CPFont fontWithName:'Lobster' size:28]];

Enjoy!