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 image. Show all posts
Showing posts with label image. Show all posts

Friday, August 9, 2013

xcode cannot find the software image to install this version

Hello,

 

I have a iPhone 5 with 6.1.3 version. So, I get the message "xcode cannot find the software image to install this version" when I have connected to Organizer.

Why? Xcode version is the lastest 4.6.2 Abril 2013.

 

How to update the xcode in order to have an updated image for my iPhone 5?

 

Thank you

Jordi Saboya


View the original article here

Thursday, August 8, 2013

xcode cannot find the software image to install this version

Hello,

 

I have a iPhone 5 with 6.1.3 version. So, I get the message "xcode cannot find the software image to install this version" when I have connected to Organizer.

Why? Xcode version is the lastest 4.6.2 Abril 2013.

 

How to update the xcode in order to have an updated image for my iPhone 5?

 

Thank you

Jordi Saboya


View the original article here

Friday, April 12, 2013

DMG disk image error: no mountable file systems

My Macintosh HD recently got bad sectors and it wasn't booting. I tried Disk Utility repair, but it failed. So I cloned the entire disk and did a clean installation of Lion. I had a disk image of 30GB in my old Macintosh HD in which I used to save my data. But now after the clean installation, when I tried accessing the disk image from the backup, it gives me an error - "The following disk images could not be opened" and "no mountable file systems".

 

I really need something that can fix this and give me access to my backup data. Thanks in advance.


View the original article here

Wednesday, April 3, 2013

Xcode: Random Image

Hey,

 

I need abit of help with xcode, I need to display 10 images on the screen, and then they will each flash in order, then stops on a random image.

 

I cant find any tutorials for anything like this.

 

Anyone got any help or good sources for me?

 

 

- Thanks, Kez.


View the original article here

Re: Xcode: Random Image

How much Xcode/Objective-C background do you have?


View the original article here

Xcode: Random Image

Hey,

 

I need abit of help with xcode, I need to display 10 images on the screen, and then they will each flash in order, then stops on a random image.

 

I cant find any tutorials for anything like this.

 

Anyone got any help or good sources for me?

 

 

- Thanks, Kez.


View the original article here

Wednesday, March 27, 2013

How can I edit boot screen image label windows

Not sure where to ask this as no real area for it ?

 

I have just clone my main HDD and bootcamp windows Vista , and put old drive in the Optical Bay , renamed the Partitions .

Now I have

Mac 1tb

Mac 500GB

Windows

Windows

Recovery 10.8

 

I want to rename one or Both of the Windows image labels in the boot screen ?

I have tried in Mac side , manually and in disk Utility

Tried in windows side in right click and then change name ,

 

But nothing seems to change the Name in the Boot image .

 

If I cannot change the name is there a way to unmount the image in the optical drive and stays uncounted when I restart to get to windows ?

 

Cheers mark


View the original article here

Wednesday, March 20, 2013

import image email attachment into app

I am trying to import email attachments into my iphone app. I am placing code in my info.plist with uti etc. I have successfully imported audio attachments (caf, aifc, aif, m4a, and mp3). But I am not being successful at all with image files. I want to import jpg, jp2, pic, tif, and png files.


I have written this code in my info.plist for the audio files.



 

Code:

 

LSItemContentTypes

com.apple.coreaudio-format

CFBundleTypeRole

Viewer

CFBundleTypeName

.caf

LSHandlerRank

Alternate

as I said this works fine for all the audio types I want.


But when I enter this code


 

Code:

 

LSItemContentTypes

public.png

CFBundleTypeRole

Viewer

CFBundleTypeName

.png

LSHandlerRank

Alternate

 

for the images, nothing happens. The app icon doesn't show up in the modal view to tap and "open in" my app.


can anyone see any thing I am doing wrong here?

 

I have looked at what there is about this and nothing seems to suggest that you need to do any thing different for images than for audio files.


I appreciate any and all help.


View the original article here

Tuesday, February 26, 2013

NSImage resizing on retina devices, saving my image into just double size. I want resize should not affected by device type.


I'm developing an app for Mac OS X.


I'm trying to resize any NSImage into a specific size like 200x300. It is working fine for Non-retina Mac.


But For Retina Mac, it is resizing the image as 400x600 which is just double, as we are expecting.


My project need is to resize the image as per given size regardless, the device on which application is running is retina or non-retina.


Is there any way to achive the target?


I have tried to measure the scale property, as for retina the scale is 2.0 so we are resizing the image for just half of the required.


But when we connected to monitors, one is retina and other is not retina, it again generating the same problem.


Here is the code which I have used for resizing:


-(void)resizeImageNSImage *)sourceImage newSizeCGSize)newSize
{


   
NSString *newImagePath = [[[Utility documentPath] stringByAppendingPathComponent:imagefolder] stringByAppendingPathComponent:@"imageName"];



   
[sourceImage setScalesWhenResized:YES];
   
[sourceImage setSize:newSize];


   
NSImage *newImage = [[NSImage alloc] initWithSize:newSize];

   
[newImage lockFocus];

   
NSRect frame = NSMakeRect(0, 0, newSize.width, newSize.height);

   
[NSGraphicsContext saveGraphicsState];

   
NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:frame xRadius:0 yRadius:0];
   
[path addClip];

   
[sourceImage drawInRect:frame fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];

   
[NSGraphicsContext restoreGraphicsState];

   
[newImage unlockFocus];

   
CGImageRef CGImage = [newImage CGImageForProposedRect:nil context:nil hints:nil];
   
NSBitmapImageRep *imgRep = [[[NSBitmapImageRep alloc] initWithCGImage:CGImage] autorelease];


       
NSData *data = [imgRep representationUsingType:NSPNGFileType properties: nil];
       
[[NSFileManager defaultManager] createFileAtPath:newImagePath contents:data attributes:nil];

   
[newImage release];

}


Any help would be very helpful for me.


Thanks


View the original article here

Tuesday, February 12, 2013

NSWindow with image background?


I am making a Cocoa Application I would Like to get an image to be in the background without using an image well.



View the original article here

Tuesday, February 5, 2013

Re: NSWindow with image background?

Ahhh, I got it, thank you for your help and patience, I don't want the image however to be the size of the window, but I dont want it to tile either, is there a way to subltly(medium in size, maybe off to one side) have it in the backround of the window?

 

Message was edited by: MacMan240


View the original article here

Re: NSWindow with image background?

Ahhh, I got it, thank you for your help and patience, I don't want the image however to be the size of the window, but I dont want it to tile either, is there a way to subltly(medium in size, maybe off to one side) have it in the backround of the window?

 

Message was edited by: MacMan240


View the original article here

Re: NSWindow with image background?

Ahhh, I got it, thank you for your help and patience, I don't want the image however to be the size of the window, but I dont want it to tile either, is there a way to subltly(medium in size, maybe off to one side) have it in the backround of the window?

 

Message was edited by: MacMan240


View the original article here

Re: NSWindow with image background?

Ahhh, I got it, thank you for your help and patience, I don't want the image however to be the size of the window, but I dont want it to tile either, is there a way to subltly(medium in size, maybe off to one side) have it in the backround of the window?

 

Message was edited by: MacMan240


View the original article here

Thursday, January 17, 2013

Apple Configurator-Backup image not saving restrictions password

Hello,

 

I am using apple configurator to create an "image" of an ipad to distribute to many others. I have configured my base ipad as I wish, save the backup in the the configurator, then proceed to image the rest. Everything works fine, however the restrictions password that I set does not store in the new image. Any way to do this, or fix the issue? any help is appreciated. Thanks!


View the original article here