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

Sunday, January 19, 2014

Re: iOS 7 keyboard flash issue

Hi Michael you are right. It's not related to adob flash. The issue is when my app comes from background to foreground ,and keyboard opens first time it opens with white color then turns into black though I have set it's appearance to dark only.


View the original article here

Saturday, January 18, 2014

iOS 7 keyboard flash issue

I am using iOS 7 for my application. In my app I have changed keyboard appearance to 'UIkeyboardApperanceAlert'. It makes keyboard black. But problem is when app comes from background to foreground, whenever I click in textField it first opens keyboard with white color and then it's color turns to black.


View the original article here

Tuesday, September 10, 2013

Enrolment issue

Hey I recieved enrolment for ios developer but not be able to activate . I used my dad's card for the payment. Now it says:

We are contacting the reference you provided to verify that you have the authority to act on behalf of your company/organization and to enter your company/organization into legal agreements.

To whom they are contacting what's going on. I purchased ios developer for an individual. Not for a company or for a organisation. Can you please help me.


View the original article here

Monday, September 9, 2013

ITunes Connect-ID Not Set-Up For ITunes Connect Issue

Hi there,

 

I'm new to the Apple Developer program. For the past 2 days, I've been trying to get into Itunes Connect and I keep getting the error message that my Apple ID is not set up for it.

 

I've read some posts that indicated you need to clear your caches, I've done this but it has not made a difference.

 

Does anyone know how to fix this issue? I really need to be able to get in there and proceed with my project asap....

 

Thanks in advance for your assistance!

 

Danielle


View the original article here

Sunday, September 8, 2013

ITunes Connect-ID Not Set-Up For ITunes Connect Issue

Hi there,

 

I'm new to the Apple Developer program. For the past 2 days, I've been trying to get into Itunes Connect and I keep getting the error message that my Apple ID is not set up for it.

 

I've read some posts that indicated you need to clear your caches, I've done this but it has not made a difference.

 

Does anyone know how to fix this issue? I really need to be able to get in there and proceed with my project asap....

 

Thanks in advance for your assistance!

 

Danielle


View the original article here

Monday, June 10, 2013

MacPorts install issue with Xcode

When I try to install MAcPorts v 2.1.3 I get the message. Xcode is not installed, or was installed without UNIX Development. When I try to open Xcode to install I get a choose application message. Running a MacBook Pro on OSX 10.6.8, what application do I open it with to install?


View the original article here

MacPorts install issue with Xcode

When I try to install MAcPorts v 2.1.3 I get the message. Xcode is not installed, or was installed without UNIX Development. When I try to open Xcode to install I get a choose application message. Running a MacBook Pro on OSX 10.6.8, what application do I open it with to install?


View the original article here

Sunday, March 3, 2013

Re: Weird iPhone/iPad Video on Website Issue


try to reset your phone, home + sleep button for 10s, and everything will be ok


View the original article here

Re: Weird iPhone/iPad Video on Website Issue


try to reset your phone, home + sleep button for 10s, and everything will be ok


View the original article here

Weird iPhone/iPad Video on Website Issue

Hi Guys & Gals,

 

Wonder if anyone can help here. On my website, I have a video on the front page, which has been set up with the HTML 5 video tag. The video performs correctly with the standard range of browsers - BUT

 

My iPad and iPhone show the video with a slash through the play button.

 

O.K. - I thought, I must have messed up the encoding of the MP4 file, so I re-encoded it several times, but it still won't play.

 

Then it started working on my iPhone - but I noticed my Wifi connection had dropped and it was playing it through a 3G connection. I thought I'd cracked it - but when I connect via WiFi it does't play.

 

Just to check I got a few friends with iPads/iPhones to check, and when connected over 3g on an iPhone the video works. (I don't know anyone with iPad with 3g). With iPhone or iPad over Wifi it doesn't.

 

I'm thinking it may be a server configuration issue (apache) but I'm struggling here.

 

The video is embedded with the HTML5 video tag as below:

 

<div align="center">

    <video width="688px" height="384px" autoplay="autoplay" loop="loop" controls="controls"poster="media/video/lvposter.jpg">

        <source src="media/video/livingdisplayvideo.mp4" type="video/mp4" />

        <source src="media/video/livingdisplayvideo.webm" type="video/webm" />

        <source src="media/video/livingdisplayvideo.ogv" type="video/ogv" />

    video>

div>

 

It is in a joomla site in a module position, but since it works over 3g, I don't think that this is causing the issue. The site is www.livingdisplay.com

 

 

Can anyone save my sanity, as I really don't know where to start looking to resolve this ?

 

 

Thanks in advance,

 

 

Mike.


View the original article here

Saturday, February 23, 2013

Re: learn C on the mac file issue.

Thursday, February 21, 2013

Re: learn C on the mac file issue.

Did you copy the My Data File to  /Users/matteotortora/   ?


View the original article here

Re: Other Storage issue in "Storage" menu Of "About This mac"

There is no one to help me??!!!!!!!!!!!!!!!!!!! plz


View the original article here

learn C on the mac file issue.

Hi, I am just a beginners and I was studying my first book for learn C : "Learn C on the mac" by Dave Mark. It was very good until I arrived at the file chapter where my first project doesn't open the file ( in this case My Data File) and show me in the output all the printf (That should't appeare if main read my file) .  I  get stack with this project:

 

file://localhost/Users/matteotortora/Downloads/Learn%20C%20Projects%20(Xcode%204 -1.x)/10.01%20-%20printFile.zip

 

I wanna post the main.c directly so it easier for you to help me:

 

//

//  main.c

//  printFile

//

//  Created by Dave Mark on 7/4/11.

//  Copyright 2011 Dave Mark. All rights reserved.

//

 

#include

 

int main (int argc, const char * argv[]) {

          FILE          *fp;

          int          c;

 

          fp = fopen( "../../../../../My Data File", "r" );

 

          if ( NULL == fp ) {

        printf( "Error opening ./My Data File\n\n" );

        printf( "The file My Data File should be in the same folder as the project file.\n" );

        printf( "The executable is buried within the DerivedData folder, five levels deep,\n" );

        printf( "which is why there are five .. in the file path above.\n" );

        printf( "To learn more about where Xcode builds your executables, go to Xcode\'s\n" );

        printf( "Preferences and select the Locations tab.\n" );

    } else {

                    while ( (c = fgetc( fp )) != EOF )

                              putchar( c );

 

                    fclose( fp );

          }

 

  return 0;

}

 

I know that there is already one post like mine but I din't find the right answer for me.

I will be really greatfull if you will help me because I would like finish my first book and I am preatty close to do that.

Thank you


View the original article here

Sunday, February 17, 2013

Wednesday, January 23, 2013

Re: CommonCrypto issue on ios

If your problem is memory, it would be helpful to see how the memory is being allocated. Are you checking and reporting on result codes?


View the original article here

Re: CommonCrypto issue on ios

If your problem is memory, it would be helpful to see how the memory is being allocated. Are you checking and reporting on result codes?


View the original article here