IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label values. Show all posts
Showing posts with label values. Show all posts

Saturday, March 9, 2013

Re: is it possible to convert Array objects into integer values?

OK Thank YOU  Frank Caggiano


View the original article here

is it possible to convert Array objects into integer values?

Hi.......every one

 

one NSMutableArray containing elements

now i covert mutablearrayobjects into integer values

how?

Thanks Inadvance:)


View the original article here

Tuesday, February 26, 2013

How to change the text color of a label by using RGB values without changing the background colour?

xCode interface builder:


When I try to change the color property of a label's text by using the RGB values, the background color also changes to the same value automatically.


in other words:


While setting the RGB values for text colour of labels, the background colour also changes unless we use the sliders.


How to make sure that only the color of text changes and not the background?


View the original article here

Saturday, February 23, 2013

Re: How to change the text color of a label by using RGB values without changing the background colour?

You can simply do this.

 

    [labelname setTextColor:[UIColor colorWithRed:38/255.0f green:171/255.0f blue:226/255.0f alpha:1.0f]];


View the original article here