ZocodeZoco.com

El zoco japonés donde mas friakadas conviven

Archive for the 'Iphone' Category

serText is deprecated, RootViewController SDK

Hoy me estoy dedicando a hacer una aplicación para iPhone (ya os la enseñare algún día..)

El tema que en el nuevo SDK de Apple al definir las «cell» lo que antes era:

//deprecate code

if (indexPath.row==0){
	cell.textLabel.text :@"Noticias";
}
if (indexPath.row==1){
	[cell setText:@"Eventos"];
}
return cell;

Ahora es:

//new code
if (indexPath.row ==0){
	cell.textLabel.text = @"Noticias";
}
if (indexPath.row==1){
	cell.textLabel.text = @"Eventos";
}
posted by Roob in Iphone,Objective-c and have Comentarios desactivados en serText is deprecated, RootViewController SDK