@EyeDevs
Jan 27
Blog, Random EyeDevs 1 Comment
In case you didn’t know, I am now part of the EyeDevs team (I joined a month or so ago, actually). More
~Keep It Simple
Jan 27
Blog, Random EyeDevs 1 Comment
In case you didn’t know, I am now part of the EyeDevs team (I joined a month or so ago, actually). More
Dec 09
Blog iClassic, self 4 Comments
December 9, it’s my 20th birtdhay! And what a better present than releasing a widely expected app that has been a success on the iPhone Jailbreaking scene.
A big thank you to all of you who did buy the app, and for those who didn’t, consider doing it if you like it! We’re not a big company (we’re not a company at all!), and it would encourage us to bring you updates and more cool apps (Our apps are only getting better!).
Either way, enjoy it!
Aug 11
Blog, Development, Tips, iPhone Apple, ObjC, PDF No Comments
This was a page, but I decided that it was too cluttered, so I decided to make it a post.
Here are some PDFs that have been really helpful to me, I have not bought any books or anything. I did take a course on basic C, and I’m also being teached Java at school.
May 07
Blog code, console, terminal No Comments
This is like an introduction to understand this blog’s types of text better:
This are the “rules” I follow when writing code:
1 2 3 4 5 6 7 8 | //Camel-cased object names, no spaces before '['. UILabel *myLabel = [[UILabel alloc] init]; if(condition){ //Brackets in the same line /*if there are a lot of things nested, sometimes I comment after the bracket to know what it closes, also in special ocations like class/interface declarations*/ } //if rect = CGRectMake(0.0f, 0.0f, 320.0f, 460.0f); //Spaces after comas, but not before. |
iDevice – With this I refer to the iPod Touch or iPhone, whichever you are using
I’ll add more as I need them.