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

Thursday, March 28, 2013

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

XCode App Won't Download

Hello,

 

I am long time PC user, and making the transition, hoping to start doing app design.

 

I saw the numerous unfavourable reviews for XCode 4.2.1, and decided to download 3.2.6 instead. I installed the program, but the actual XCode application didn't show up in the installation file in the /developer directory. After much searching, and failing to find the file any way to load the XCode application, I am now trying to download XCode 4.2.1 from the App Store

 

I signed up for a developer account, and have repeatedly tried the 'Install App' button for Xcode 4.2.1, but it will not begin the download. I haven't had this problem with any other apps, but for some reason, it is refusing to start the installation process. I am not getting any error messages, it is simply not starting the download and installation process.

 

Any ideas? 


View the original article here

Anyone else experiencing problems accessing correct sales data for their App sales?

Please get back to me if you have any information on this.Have downloaded sales data for February but all weeks not showing and figures.One set of graphs show figures in 10's and 20's and 30's.

Apple then got back to me with totally different figure from mine and a graph that goes up in single figures.I asked them to escalate the query as I needed February's sales figures to be sent to me to check.Apple say they are"not responsible for any discrepancies in sales data".And are not supplying me with them.Seems wrong to me.


View the original article here

Certifications for iOS Developer and Application Architect

Hi,

 

Are there any certifications and courses for iOS Application Architect?

I completed Bachelors in Computer Science.

 

Regards


View the original article here

syntax for do shell script output displayed as list in applescript


Hi guys,


I am looking for the correct syntax for a


do shell script command in applescript,


where the results of the do shell script command are displayed as a list in applescript,


whereupon i can then choose one of these given results and move on from there, this is where i have gotten to:





my issue is that the results are as follows when done in terminal:



but when done in applescript i only see this:



obviously the terminal results need to be handled in some special manner that i am unaware of,


to handle each line in the terminal results as a single option in my list. Anyone got any idea how to do this?


cheers


View the original article here

Why Is There No "Persian" Language Within iOS?

There is every language you can think of; even Greek where its population whom speak Greek is something less than 20 million. But no Persian language is installed within the iOS for iPhone's/iPad's keyboard settings. Why has this issue taken so long and not been dealt with?


View the original article here

How to access the developer forums ?

Hi everybody

I've logged in with my Apple ID and downloaded iOS SDK.

But when ever I click the "Login" at http://developer.apple.com/devforums/ I'm just redirected back to http://developer.apple.com/devforums/

Any ideas ?

// Sebastian

View the original article here

CoreData

Can different copies of the same application access eachother's CoreData Persistent stores through their CoreData models even though they are installed on different computers, or do they have to be on a network that is sharing one CoreData Model in order to store and access eachother's managed objects?


View the original article here

To proceed with your enrollment, we need a certified or notarized copy of your government issued photo ID

I have registered for the iOS Developer program since 2 weeks..Its is asking the Photo ID for contact verification, so can you please help me out what type of notarized copy of your government issued photo ID i need to provide for activating an iOS Developer program...


View the original article here

Xcode Quit Unexpectedly ?


Hi........every one


why i am getting these type of problem at the time of i did my work with Xcode



Xcode Quit Unexpectedly ?



please help me & what is reason for this issue


how can i over come this













Thanks ImAdvance


View the original article here

How to get access of developer forum

Hi Guys,

 

I have created an apple ID successfully. I want to access apple developer forum also. Can anybody assist me with this I am not finding any link to register for the same?

 

Thx

Pras


View the original article here

Own codec component for QuickTime X

Hi, everyone

I have 32-bit Carbon codec component for QuickTime 7, but it does not work in new QuickTime X. Is any way to rewrite this codec component to become work with QuickTime X?

Thanks


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

Video won't play in QuickTime X

We have server, that stored videos in QuickTime mov format, encoded by proprietary codec. We can download this videos and after that open it locally, or we can just play it streamed directly from server. In the client, user has one component for QuickTime for streaming handling and another component - codec for decoding video. Streaming handling component implemented as old Carbon 32 bit component. Codec implemented as 32 bit component too. For QuckTime 7 all works as expected, but in QuickTime X we can hear only audio, without video. How to solve problem with incorrect video playing for QuickTime X, with backward compatibility to QuickTime 7?


View the original article here

MediaPlayer

I'm trying to make a music player app for iOS and am having some difficulty with MediaPlayer.framework.

Here is some code from my prototype:

- (IBAction)showMediaPicker:(id)sender{

    MPMediaPickerController *mediaPicker = [[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeAny];

    mediaPicker.delegate = self;

    mediaPicker.allowsPickingMultipleItems = YES;

    mediaPicker.prompt = @"Select songs to play";

    [self presentViewController:mediaPicker animated:YES completion:nil];

}

 

- (void) mediaPicker: (MPMediaPickerController *) mediaPicker didPickMediaItems: (MPMediaItemCollection *) mediaItemCollection

{

    if (mediaItemCollection) {

        [musicPlayer setQueueWithItemCollection: mediaItemCollection];

        [musicPlayer play];

    }

    [self dismissViewControllerAnimated:YES completion:nil];

}

- (void) mediaPickerDidCancel: (MPMediaPickerController *) mediaPicker

{

    [self dismissViewControllerAnimated:YES completion:nil];

}

/*

musicPlayer is defined as:


In the .h file:

MPMusicPlayerController *musicPlayer;

@property (nonatomic, retain) MPMusicPlayerController *musicPlayer;

*/


This piece of code brings up a view to pick some songs to play. The problem is that if I pick song a and b, listen to a and decide to add song c and d, only c and d play. This means that the songs are not added to the queue, the queue is deleated and songs are added on top of that. This is also a problem because you can't(at least in the code I use)go back to the previous song or go to the next song unless it is in the queue.

How can I add to the queue without the data being deleated.

Also if you know any good documentation or tutorial on MediaPlayer.framework please share it.

I should also point out that i am in the process of learning iOS development so if it is a general problem could you plaese derect to me some documentation or to a tutorial.

Thanks in advance!


View the original article here

Apple, please allow developers to delete old app IDs

I'll try not to rant, but I would very much like to express in an appropriate forum my immense disappointment with Apple for not allowing developers to remove or at least sequester old app IDs.

 

The posts all over the internet basically say that we're all stuck with as many old useless "work-in-progress" app IDs as we've ever created, and must pour through the ever growing list of them as we continue developing. Or tread the slippery slope of recycling old IDs for development just to keep the list from growing out of control like an untended garden. This is unacceptable.

 

I usually try to be hyper-organized, but this is about as counter-organizational of a setup as I've ever worked with, essentially forcing me to rethink my entire development pipeline. It is further pushing me towards Android development, with iOS becoming secondary. I don't want that. I'd rather have it the other way around but I'm not going to continue doing my initial test developments for iOS if there is no way to manage this.

 

I have been doing "pitch" projects for most of my clients and if the job changes significantly or doesn't materialize, the app dies. So why should I be forever stuck with an app ID that I will never again use?

 

An acceptable fix would be some kind of sequestration for old "dead" app IDs. 

 

I know there is currently no way to do this. What I am asking is basically what is the appropriate way to request it to the proper wing of Apple?


View the original article here

Apple ID for iBook Store

I am in the process of signing up for an account that will allow me access to distribute my book.  I went through the process and never received the confirming email. Now, when I try to sign into the iTunes Connect account through the iBooks OSX app, it says that my Apple ID is incorrect. How can I resolve this issue?


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

How to change iCloud email address?

I entered a test address when setting up iCloud, but now cannot find out how to change this to the email I would like with the @me.com ending. Any ideas?


View the original article here

Wednesday, March 27, 2013

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

SKPaymentTransactionStateFailed, but no error property returned?

Hi. We have an app with IAP coin purchases. We've recently received mail from one of our users, saying he couldn't purchase any coins. I looked at his session logs and saw 3 Failed IAP events, but no fail reason logged. Here's the related code:

 

- (void)_purchaseRequestFailed:(SKPaymentTransaction *)transaction state:(StoreTransactionState)state error:(NSError *)error

{

    IAPProduct *product = [self getProductWithId:transaction.payment.productIdentifier];

    if (error.code==SKErrorPaymentCancelled) {

        [_metricsManager logFailIAP:product failReason:@"Payment canceled"];

    } else {

        [_metricsManager logFailIAP:product failReason:error.localizedDescription];

    }

    if ([_delegate respondsToSelector:@selector(didSucceedPurchasingProduct:)]) {

        [_delegate didFailPurchasingProduct:product];

    }

}

 

---- inside logFailIAP:

          

  if (failReason != nil && failReason.length > 0) {

        [metricsDictionary setObject:failReason forKey:MetricsEventParameterFailReason];

    }

 

-------

 

My question is: is there any case where, you get "SKPaymentTransactionStateFailed" but, have an empty error.localizedDescription? My guess is, this is caused by a faulty internet connection, but I can't be sure, because Apple does not list the possible errors.


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

Apple Product Sponsor

I wasn't sure of this so I decided to ask you guys. Who sponsors/pays for Apple's products? Correct me if I'm wrong or something. I am doing this website for my assignment so wanted to know about this.


View the original article here

Can I have two iCloud email accounts?

I have an iCloud email account for casual and leisure time. I need a professional email in addition to my other account. Can I have two at the same time?


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

can ios load content

scouring the net, i can't find the answer:

 

does apple's tos allow my iOS app to load external content?  from an xml doc?  a text doc?  database?  an image?  a video?  a sound?


View the original article here

Stop and Resume audio from other view controller iOS AVPlayer

I have an app that plays sound when it loads. This happens in the AppDelegate.m file because the audio is used in most places. But I would like to pause the sound when the user clicks on the help menu because the help menu contains a help video and I do not want the sound to interfere. And when the user goes back to the main menu I want the sound to resume. Basically I would like to access the sound and perform things on it. How can I do this.

Thanks in advance!

 

AppDelegate.m:

- (void)applicationDidBecomeActive:(UIApplication *)application

{

      

   NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/AppMusic.mp3", [[NSBundle mainBundle] resourcePath]]];

 

          NSError *error;

  audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];

  audioPlayer.numberOfLoops = INFINITY;

 

          [audioPlayer play];

   

}


View the original article here

App store build version and version from info.plist releated

Hi,

 

I assume the build version displayed in app store should be in sync with app version given in info.plist and it should be same as archived version.

 

Is there any possibility of modifying only app store builld version?

 

To be very clear, is it possible to have app store version as 1.5.1 and info.plist has 1.2.3?

 

Please confirm.

 

Thanks.


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

USPS issues "TSP Fund" App security warning from US Gov

This warning was issued by the government about the following app.

 

Avoid the app

Posted 3/14/13 at 1:55 p.m.

 

Thrift Savings Plan (TSP) officials are urging federal employees to steer clear of a new third-party application that may be phishing for personal information about their TSP government retirement accounts.

 

A free iPhone app called TSP Funds, currently being offered through the Apple App store, asks TSP participants for their account login information. “This app is not being offered through the TSP and the TSP does not recommend using this application to access your TSP account,” said a TSP statement. “Providing this information could result in a security risk to your account.”

 

For employees who have downloaded TSP Funds, the Postal Service recommends deleting the app and changing the passwords to their TSP accounts.

The Government Executive’s app for iPhone and Android, which features a TSP ticker with up-to-date information on all TSP funds, does not ask for account information.


View the original article here

In order to get APNs certificate for being a provider of push notification for an app, do I need to pay ?

There are very poor instructions or how to create the certificate. The instructions are nice for creating

of CSR etc. But no where is there any information of what type of developer you should be to get this.

 

One outside link unrelated to apple says you should be an enterprise developer and paying

$299/year !!! for this.

This really and totally ***** and apple is just looting if that's a requirement.

They can charge this for enterprises or companies. I am an individual user and would like to

just have some push notifications sent using my own home server.

 

If I go to https://identity.apple.com/pushcert/ (which redirects to another page prompting for login)

and I login with my free developer account, it says that your apple ID must be associated with

an email address etc (which is a wrong/irrelevant message).

 

Does anyone know how to get a push certificate ?

Is payment required absolutely ? Or can it be done without paying ?

If payment is required, how do we encourage or make apple make it free ?


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

Developer ID for temporary contractor

Another person is developing an app for me, so I need to create a developer ID. But I do not want them to have access to my credit card info. How can I hide that from them?


View the original article here

Fax purchase form

Where can i find link to apple purchase form that i have to fax to get enrolled in developer program.

I cant find in their website


View the original article here

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

Running a dashboard widget in Dashcode

When I 'Run' a dashboard widget in Dashcode, it flashes and disappears.  Activity Monitor says a DashboardClient is active but I cannot find the widget anywhere.  The system log reports 'DashboardClient[897]: error [1001] setting colorSpace to iMac colorspace'.  Is something missing?  Is there something missing in my environment?


View the original article here

Suddenly, can't sync any songs from iTunes to iPhone, other help topics suggestions, not helping me :(

Everytime I try to sync any of my songs onto my iPhone 4, I get an error message that says: "Some of the items in the iTunes library, including "(song name)", were not copied to the iPhone "iPhone Name" because they could not be found." and then it stops syncing. It says there are 13 problems. Then when you expand to see the files, each one says: "(song name)"" was not copied to the iPhone "iPhone Name" because it could not be found." It can be any song, an old song from 7 years ago that I got off Limewire, or a song from a CD, or it can be a song I paid for from the iTunes store. Doesn't matter.

Couple weeks ago, I had no problems. Purchased new songs and had them in playlists on my phone. Then a couple days ago, I plugged my iPhone into the computer (to charge it), and suddenly my songs were removed off the iPhone. So I tried to put them back on, kept getting this error. So I googled it. I have spent the past 4 days TRYING to get things to work. I have looked through all the other similar questions, and tried suggestions on there. Nothing is working.

- There is no exclamation point beside any of my music.

- I have not changed the hard drives (I don't use my computer daily, probably once a week), (Windows is up to date also).

- I have tried re-adding the songs to the library.

- Everything still plays in iTunes.

- If I click on the file in its location, it will open it and play it in iTunes.

- I tried deauthorizing my account then reauthorizing it, didnt work.

- I have even removed all my music off my phone to see if that works, now I have 15 songs on it.

I did find it odd that when I looked in my purchased playlist, they were not there, but they are on the computer and on the purchased list (under the iTunes store on the side menu). At least I can use my iPod for when I'm in the car, but now I have to carry that around too, I'm getting quite frustrated. Normally I'm quite computer savvy, but I'm totally stuck on this one. And like most people, I rely on my iPhone WAY to much and let the little things affect my daily life. I hope SOMEONE can please help me?!?

(I don't know if it may even have to do with the fact that yesterday I finally got my iPhone updated to the latest IOS, (cuz I was finally able to download the update from iTunes... Unless that was a separate update) the one where it's like "do you want to cancel, download only, download and install").


View the original article here

"too few items in teams"

Hi! I need some help.

mac os 10.8.2, Xcode Version 4.5 (4G182), iPhone 4 (6.0).

 

In Organizer - Provisioning profiles - press "refresh", input "appleID" + "password" and see: "too few items in teams".

 

i made how in https://developer.apple.com/library/ios/#technotes/tn2250/_index.htm

 

"How do I login to Xcode with a different team member?

Xcode currently caches the portal login information you've entered. To re-login to Xcode with a different team member:

  • Open Keychain Access > Passwords category.
  • Delete the entries for daw.apple.com and daw2.apple.com
  • Retry the Provisioning Profile Refresh process."

 

but have still this problem "too few items in teams"...

 

What i need to do?


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

Re: XCode App Won't Download

In case anyone else has the same problem....Xcode is 1.6gb so takes a while.

 

Have a look in App store at 'purchased' tab and you can see progress.  I had same issue as looked like it wasnt moving at all.

 

Just takes some patience.  Hope this helps.  Maybe a progress bar in launchpad with download time would assist!


View the original article here

Stop and Resume audio from other view controller iOS AVPlayer

I have an app that plays sound when it loads. This happens in the AppDelegate.m file because the audio is used in most places. But I would like to pause the sound when the user clicks on the help menu because the help menu contains a help video and I do not want the sound to interfere. And when the user goes back to the main menu I want the sound to resume. Basically I would like to access the sound and perform things on it. How can I do this.

Thanks in advance!

 

AppDelegate.m:

- (void)applicationDidBecomeActive:(UIApplication *)application

{

      

   NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/AppMusic.mp3", [[NSBundle mainBundle] resourcePath]]];

 

          NSError *error;

  audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];

  audioPlayer.numberOfLoops = INFINITY;

 

          [audioPlayer play];

   

}


View the original article here

My first iPhone app attempt

Hi guys.

 

So I am a total NOOB.

 

I'm reaching out for advice on my first app attempt

 

Here's what I want to do.

 

I run a personal fitness training business.

 

I use iCloud to keep multiple client calendars in iCal.

 

Each one of these calendars has a URL

 

Id like to develop an app in Xcode that allows the client to retreive that URL somehow, and then the calendar events show up on iCal on the iPhone/iPad.

 

So at the end of the process the new client only has to do this once and then they are subscribed to their calendar forever.

 

Is this possible guys?


View the original article here

Re: Why Is There No "Persian" Language Within iOS?

I didn't mean to come across as rude or to sound like I was accusing you or anything, so for that you have my apologies. And no sir there are far more Persian speakers than Greek. Greece itself has a population of 10 million. Iran A.K.A. Persia has around 80 million. Hopefuly one day when we overthrow this theocratic dictator government and reinstall our monarchy in a parliamentary based fashion, a Persian keyboard will be added to the iPhone/iPad.

 

By the way the Persian word for Persian is "Parsi" not Farsi. Reason some mistake it and call it Farsi is because of history; when the Arabs had invaded and because they do not have "P" in Arabic hence they called our language Farsi instead of Parsi. Anyway just thought I'd share a small interesting fact. Thanks for your time and help guys.


View the original article here

Same app, different stores for submission

Not sure, if this is the right place to ask this. I have an app ready to be submitted to the app store. I have included an app description suitable to one country and want this to be available to that particular country store only. This is easy to achieve.

 

Question is, can I use the same app with same name but different description to be available on the other stores. Kindly, provide an insight as how this can be achieved.


View the original article here

In-App Purchase Details Access

Is there a way to access In-App purchase Details of an IOS app in an Objective Program


View the original article here

UITableView Scroll Bug?!

I have a UITableViewController view with a table view showing some items and I'm able to scroll normally but when I added a UIView to the header of the table view and added a UISearchBar to this UIView (just added this in IB, no additional code, nothing else) the table view does not scroll anymore, it bounces as if it would scroll but it blocks the scrolling.

 

If I tap on the search bar and afterwards cancel the search, then when it goes back to the original table view it scrolls normally.

 

Has anyone faced this issue before? Any suggestions?


View the original article here

How to rotate a UIImageView

Hello,

I need help to implement a function in my code xcode to rotate a single image on its own axis. The image needs to rotate to click a button and then must stop when this button is pushed again. I managed to make a schedule to do this by looking at some tutorials, but not working correctly, by clicking on the image rotacionamento this, but this also moving laterally, not just this rotating in own central axis, the image needs to be stopped and only turn. I'm using the code below to do this function. Can someone help me tweak this code or suggest any other better solution? Thank you for your help. Below the code I'm using.

 

 

In ViewController.m

/

//  ViewController.m

//  Motrista da rodada

//

//  Created by Alexsandre Andrade on 23/03/13.

//  Copyright (c) 2013 Alexsandre Andrade. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()

 

@end

 

@implementation ViewController

 

@synthesize theButton, theImageView;

 

-(void)rotateRoulette

{

    theImageViewLogo.hidden=YES;

    theImageView.hidden=NO;

    theButton.titleLabel.text = @"Parar";

    self.theImageView.center=CGPointMake(self.theImageView.center.x, self.theImageView.center.y);

    self.theImageView.transform=CGAffineTransformMakeRotation (angle);

    angle+=0.4;

}

 

 

-(IBAction)runRoulette:(id)sender

{

   

    if(!runStop)

    {

       

       

        theTimer = [NSTimer scheduledTimerWithTimeInterval:1.0/40.0 target:self selector:@selector(rotateRoulette) userInfo:nil repeats:YES];

    }

    else

    {

       

        [theTimer invalidate];

        theTimer = nil;

    }

    runStop = !runStop;

}

 

- (void)viewDidLoad

{

   

    [super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

   

    angle = 0;

    runStop = FALSE;

   

   

}

 

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

@end

 

-------------------------------------------------------------------------------- ---------

 

In ViewController.h

 

/

//  ViewController.h

//  Motrista da rodada

//

//  Created by Alexsandre Andrade on 23/03/13.

//  Copyright (c) 2013 Alexsandre Andrade. All rights reserved.

//

 

//#import

 

//@interface ViewController : UIViewController

//@property (weak, nonatomic) IBOutlet UIImageView *seta;

//@property (weak, nonatomic) IBOutlet UIImageView *image;

 

#import

 

@interface ViewController : UIViewController

{

    IBOutlet UIImageView *theImageViewLogo;

    IBOutlet UIImageView *theImageView;

    IBOutlet UIButton    *theButton;

    NSTimer              *theTimer;

    float        angle;

    BOOL         runStop;

}

 

@property (atomic, retain) IBOutlet UIImageView *theImageView;

@property (atomic, retain) IBOutlet UIButton    *theButton;

 

-(IBAction)runRoulette:(id)sender;

 

 

 

@end

 

-------------------------------------------------------------------------------- --------------

 

 

 

 

 

thanks!!


View the original article here

Where can i learn to develop?

UITableView Scroll Bug?!

I have a UITableViewController view with a table view showing some items and I'm able to scroll normally but when I added a UIView to the header of the table view and added a UISearchBar to this UIView (just added this in IB, no additional code, nothing else) the table view does not scroll anymore, it bounces as if it would scroll but it blocks the scrolling.

 

If I tap on the search bar and afterwards cancel the search, then when it goes back to the original table view it scrolls normally.

 

Has anyone faced this issue before? Any suggestions?


View the original article here

Friday, March 22, 2013

iPad mini for a penguin??


Hello fellow Appleites.(Apple-eye-tis)



Now I am a old school apple fan with the only apple product I have got is a iPod Shuffle 2nd gen. Now I want to upgrade but do not have the money to upgrade. I would really like a iPad Mini. So I have come up with a really good trade. I have drawn a penguin to sweeten the deal, becuase whats more sweeter then a penguin. Now I hope you consider the option I have given you as it probally a once-in-a-lifetime deal. Here is the picture.



I hope you like it



OLD SCHOOL APPLER


xCh3wyy


View the original article here

Re: How can I repeat an AppleScript function if a variable is changed?

In AppleScript, using the equal sign in a statement such as temptext = myText tests for equality - it does not assign a value.  The set command is used to assign a value to a variable.

 

Using a repeat statement to check for an album change is also not really the way to go, since it tends to max out your CPU usage - if you create a stay-open application, it will run in the background and the idle handler will be called periodically (the default is every 30 seconds):

 

property oldText : missing value

 

on idle -- check periodically

  checkAlbum()

  return 30 -- or however many seconds before the next time

end idle

on checkAlbum() -- check if the current album name has changed

  tell application "iTunes"

    if player state is not playing then return

    set albumName to (get album of current track)

  end tell

  set myText to text 1 thru 10 of albumName

  if myText is not oldText then

    set oldText to myText -- update

    open location "http://bandsite.com/shows/" & myText

  end if

end checkAlbum



View the original article here

EXC_BAD_ACCESS

Hello All,

 

I am getting Exception Type:  EXC_BAD_ACCESS (SIGSEGV) few times while testing my app,

I am trying to debug the code but it returns nothing, but it saves the log in xcode Device log as follows

 

Date/Time:       2013-03-20 15:10:31.211 +0530

OS Version:      iOS 6.0.1 (10A523)

Report Version:  104

 

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)

Exception Codes: KERN_INVALID_ADDRESS at 0xbbadbeef

 

 

Thread 0 name:  Dispatch queue: com.apple.main-thread

Thread 0:

0   libsystem_kernel.dylib                  0x3a52ceb4 mach_msg_trap + 20

1   libsystem_kernel.dylib                  0x3a52d048 mach_msg + 36

2   CoreFoundation                          0x34b0f040 __CFRunLoopServiceMachPort + 124

3   CoreFoundation                          0x34b0dd5a __CFRunLoopRun + 810

4   CoreFoundation                          0x34a80eb8 CFRunLoopRunSpecific + 352

5   CoreFoundation                          0x34a80d44 CFRunLoopRunInMode + 100

6   GraphicsServices                        0x364d92e6 GSEventRunModal + 70

7   UIKit                                   0x3a64a2f4 UIApplicationMain + 1116

8   GoPlay                                  0x0004ac2c main (main.m:10)

9   GoPlay                                  0x0004abc4 start + 36

 

Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager

Thread 1:

0   libsystem_kernel.dylib                  0x3a52d648 kevent64 + 24

1   libdispatch.dylib                       0x3b0014ec _dispatch_mgr_invoke + 792

2   libdispatch.dylib                       0x3aff3df4 _dispatch_mgr_thread$VARIANT$up + 32

 

Thread 2 name:  WebThread

Thread 2:

0   libsystem_kernel.dylib                  0x3a52ceb4 mach_msg_trap + 20

1   libsystem_kernel.dylib                  0x3a52d048 mach_msg + 36

2   CoreFoundation                          0x34b0f040 __CFRunLoopServiceMachPort + 124

3   CoreFoundation                          0x34b0dd9e __CFRunLoopRun + 878

4   CoreFoundation                          0x34a80eb8 CFRunLoopRunSpecific + 352

5   CoreFoundation                          0x34a80d44 CFRunLoopRunInMode + 100

6   WebCore                                 0x3671da40 _ZL12RunWebThreadPv + 440

7   libsystem_c.dylib                       0x3a30830e _pthread_start + 306

8   libsystem_c.dylib                       0x3a3081d4 thread_start + 4

 

AND MORE......

 

Please help me to solve this type of error.

 

Thanks


View the original article here

Re: How to get access of developer forum

You need to purchase a license to access the forums at https://devforums.apple.com/community/ios?view=overview

 

You can sign up here:  (for iOS, there is another link for Mac OS)

https://developer.apple.com/programs/ios/


View the original article here

i have problem with nsuser at login

i have problem with this i want want to login with another view controller the username and password recive from webservices

 

and responce string return the 0 and 1

 

NSString *responseString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];

    NSLog(@"responcestring%@",responseString);

  

 

 

    if([responseString isEqualToString:false] )

   {

       UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"WRONG USER" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];

       [alert show];

       [alert release];

 

      

 

          }

     else {

         [prefs setObject:@"true" forKey:@"login"];

         [prefs synchronize];


View the original article here

PackageMaker basic question

Hi

 

I am a newcomer to PackageMaker and need it to do something quite specific. There are two elements to the package:

1. A sampler instrument file (for Logic Pro) - this need to install to the user's home directory and I have figured this part out

2. The sample files (a folder of audio files) - these could be installed anywhere; what I would like the installer to do is ask the user where they would like to install this part only (element 1 location is not optional)

 

Is that possible?

 

Thanks in advance


View the original article here

Making a Standalone c++ (app) with Xcode... please help

Hi. I am trying to learn c++, using some books and the internet. I made my first program, which converts celsius to farenheit and vice vera (amazing, I know). I used Xcode, and obviously, it runs in the Xcode app itself, in the little interface panel (or whatever it is called).

 

Now, my question is, how, and how far into learning c++ does this sort of thing come into play, do you make your own 'app', or it's own 'window'?

For instance, I would like to eventually make a game, but I cannot have my game running in Xcode, I want it running by itself, like games you buy for the computer.

 

I realize if I stray away from the books I am reading, and learn things ahead of my level, it will ruin the learning process, but I really want to know how to do this.

 


Thanks.


View the original article here

Re: deprecated conversion from string constant to 'char*'

Your help has helped me.

I am using this code in global scope of my file in xcode 3.2.3


View the original article here

Re: deprecated conversion from string constant to 'char*'

Your help has helped me.

I am using this code in global scope of my file in xcode 3.2.3


View the original article here

iPhone Screen is blinking after UIAlertView Shows iOS 6.1.2

iPhone Screen is blinking after UIAlertView Shows iOS 6.1.2


View the original article here

Re: geolocation doesn't work with iOS 6 web apps!

Re: How to get access of developer forum

You need to purchase a license to access the forums at https://devforums.apple.com/community/ios?view=overview

 

You can sign up here:  (for iOS, there is another link for Mac OS)

https://developer.apple.com/programs/ios/


View the original article here

Re: How can I use AppleScriptObjC to close my Xcode application?

Call

 

on applicationShouldTerminate_(sender)

end applicationShouldTerminate_

 

 

You can put any cleanup code the app should run before terminating in there.


View the original article here

Re: How do I change connection interval with core bluetooth.

Did you find, how to change connection interval using core bluetooth?


View the original article here

deprecated conversion from string constant to 'char*'

Hi all

I am working with strings and i cant figure out why the following

warning appears at time of build.

 

warning: deprecated conversion from string constant to 'char*'

It appears for the line

 

char *myName = "Apple.txt";

Is there anyone who can help me?

Help is welcome.

Thanks in advance.


View the original article here