Saturday, March 1, 2014
I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue?
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.
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.
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.
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
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
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?
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?
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
Re: Weird iPhone/iPad Video on Website Issue
try to reset your phone, home + sleep button for 10s, and everything will be ok
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.
Saturday, February 23, 2013
Thursday, February 21, 2013
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
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?
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?










