[Valid RSS]

iPhone screen dimensions

Share

This picture can be useful to those of you that develop graphics targeted to the iPhone platform. Here you see the dimensions in pixel of an iPhone windows in some of the most common configurations. Click on the image to enlarge it.

Chosing the number of decimal digits when printing a number with iPhone

Share

This is a small snippet, useful whenever you want to convert a floating point number in a string with a fixed number of decimal digits.

NSNumberFormatter *format = [NSNumberFormatter new];
[format setMaximumFractionDigits:1];
NSNumber *aNumber = [[NSNumber alloc ] initWithDouble:54.4235264];
NSString label = [[NSString alloc] initWithFormat:@”The number is %@”, [format stringForObjectValue:aNumber]];
[distance release];
[format release];

Obviously the NSNumberFormatter [...]

iPhone: how to select a UITabBarItem programmatically

Share

I’m working to an iPhone application with a TabBar on the footer area. Among the others there are a “Home” button and an “Account” button. The first allows the user to see a view that gives an overview of the application. The latter shows the view that the user uses to manage his/her account.

If the [...]

Iscrizione nell'elenco certificatori CENED

Share

E’ arrivata oggi conferma della mia iscrizione all’elenco certificatori CENED, con numero 11810. Date un’occhiata su http://www.cened.it/elenco_certificatori.

Readonly computed properties in Objective-C

How to implement a read-only computed property in [...]

Affidabilità dei sistemi informatici bancari

Share

Stavo lavorando in una banca ad un porting verso tecnologie attuali di un sistema esistente da qualche anno. Nell’ambito di tale progetto dovevo realizzare un modulo del sistema il cui compito era sostanzialmente quello di estrarre da DB dei record con un campo data maggiore o uguale alla data di odierna, eseguire alcune elaborazioni e [...]

Quanti euro vale la classe energetica di un appartamento ?

Valutazione del risparmio energetico nell’acquisto di un appartamento nelle varie classi energetiche previste dalla regione [...]