Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

98
votes
10answers
64k views

iPhone App Minus App Store?

I've been looking into iPhone development, but I've been having problems coming up with the answer to a certain question. If I create an application on my Mac, is there any way I can get it to run on ...
9
votes
2answers
1k views

Best way to switch between UISplitViewController and other view controllers?

I'm authoring an iPad app. One of the screens in the app is perfectly suited to using a UISplitViewController. However, the top level of the app is a main menu, which I don't want to use a ...
8
votes
3answers
3k views

Application Loader: No eligible applications were found

I am trying to upload my application to the apple app store, but! I've set my application ID, certificate etc... then build signed application step by step according apple howto's. In iTunes Connect ...
6
votes
2answers
189 views

iPhone app with or without AppStore

My company is offering a service to our clients which we would like to implement on iphone. Our clients would be paying $5000 per month for the service, so they can give it free of charge to their ...
6
votes
3answers
397 views

is it prohibited using of JIT(just-in-time) compiled code in iOS app for AppStore?

I heard that JIT compiled code is not allowed in iOS AppStore because placing executable code in heap is prohibited. It that right? Or just a rumor?
4
votes
1answer
116 views

(iOS) Is there a way to retract my app submission?

I've just uploaded my first update to an app I've had in the app store for a while. Unfortunately I accidentally left some debug-related code in there. There is a UI element (a button) that triggers ...
4
votes
2answers
279 views

Donation options in an app - Are any of these allowed?

Are any of these options allowed regarding accepting donations through an iPhone app, without "losing" 30% of the money to Apple? A button which links to a web page that accepts donations with ...
4
votes
2answers
1k views

Just got my app rejected because it ask the user to register on startup. Any help

I've just received an email from apple saying that the app I submitted to the App Store a week ago has been rejected. The text of the email is reprinted below: Thank you for submitting iDealwine ...
4
votes
1answer
899 views

Obtain Apple software id number before appstore submission (for Appirater)

I'd like to use the wonderful Appirater code to encourage users to rate my app, which I have yet to submit. In order for this to work, you need to have the software id supplied by Apple. As I haven't ...
4
votes
3answers
2k views

iOS installing apps without app store

is there any LEGAL way (w/o jailbreak) to install iOS application to iOS device (ipad, iphone, ipod) without publishing to application store? For example - application for closed group of users ...
3
votes
1answer
82 views

Using a Java library in an Objective-C Mac app, and putting that app on the Mac App Store

I've been researching this problem for a while now, and have not yet arrived at a clear answer. I am writing a Mac OSX application that I intend to eventually put on the app store, and while I will be ...
3
votes
1answer
112 views

Do build warnings affect the iOS app store approval process?

When an app is undergoing the app store approval process, do the people at Apple check the warnings in your project, or do they only check for errors? e.g. I have this warning on a lot of my NIB ...
3
votes
2answers
81 views

Is doing a command like “defaults write com.blahblah key true” a private API?

The Mac App Store guidelines say you can't use private APIs. I'm toying with an app that modifies a Finder setting using a terminal command setting showAllFiles to true: defaults write ...
3
votes
1answer
112 views

App Store rejection due to programmatically adding application to all spaces

I have an app submitted to the app store that was rejected due to: 2.30 Apps that do not comply with the Mac OS X File System documentation will be rejected They claim my app is modifying the ...
3
votes
2answers
152 views

Amazon AppStore Submission Failed: “Sensitive information like password is echoed in clear text without encryption”

I've submitted an application to the amazon app store, and it was rejected with the following details: Sensitive information like password is echoed in clear text without encryption Obviously, ...
3
votes
3answers
325 views

Does the Apple App Store reject apps that require username/password access?

We wish to build an app that would require (paid) registration on a third party website to access. This would be authenticated via the web once, allowing access to the content thereafter. Does the ...
3
votes
1answer
299 views

Adding Image to UIActionSheet UIButton and App Approval

I want to submit an iPhone application, and I am concerned about the following line of code which add an Image to the UIActionSheet Button: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
3
votes
3answers
153 views

Small Update in a live iPhone app

I want to make small updates in my iPhone app. It is live on the app store. What is the process to submit an update ? Is it necessary to create a new version ? Will it be reviewed again and how much ...
3
votes
1answer
1k views

How to fix “Apple is not currently accepting applications built with this version of the SDK.” error for distributing an iOS SDK 4.2 app

This is very similar to a couple of other questions on stackoverflow, but they all seem to be from last year and referring to lower version numbers. I have: xcode version 3.2.5 A distribution build ...
3
votes
2answers
49 views

Can i build an app that edits the conatct list on the iphone?

Hey everybody, I want to create an app that handles some sort of recognition of another person in my area, and creates a new contact based on his info. regardless to how it is done, my question is ...
3
votes
1answer
307 views

Mac App Store Reviewer says “It appears Kiwi fails codesign verification”

But it clearly does not fail on my system. The Verification test in XCode during the submission should (I assume) test this. And running codesign on the command line of the archived app results in: ...
3
votes
1answer
120 views

When does App Store promotional code become effective?

I just submitted my app to the App Store and it's in the reviewing process (3 Degrees of Wikipedia). I have set the "Availability Date" to a future time as some blogs want to cover my app, and I want ...
3
votes
1answer
557 views

NSLog in submitted app

I had the misfortune of submitting an app with an NSLog still active. It very rarely fires, but I would like to know what are the chances of my app being rejected because of that? I am NOT asking how ...
3
votes
3answers
356 views

AppStore approval of a free application with paid content

We have developed an application that allows a user to download audio content. The use of application itself is free, but we charge for the content. In our current business model, we accept payments ...
3
votes
1answer
204 views

Can we upload applications developed by VMWARE server to App Store?

Hi Guys I am having one doubt using VMWare Server. I have developed applications using VMWare Server. Can i upload these applications to App Store? Is there any chance to apple that it can find the ...
3
votes
4answers
2k views

What is the definitive checklist for Apple app store submittals?

I have a couple of apps coded up and tested, but can't seem to find out what is the definitive checklist for submitting apps to the app store. There doesn't seem to be an Apple document that spells ...
3
votes
2answers
930 views

What you need BEFORE you submit your iPhone app to Apple

When submitting a new app to the iPhone app store, which of these are mandatory, and which are optional? (Free apps... or paying apps.) A bank account with direct deposit access. An email address ...
3
votes
2answers
295 views

Would Apple approve an app that uses unmodified sample code from the iPhone developer center?

I'm writing a class that extends a UIScrollView to display a large tiled image, and I've realized that the TiledScrollView from Apple's ScrollViewSuite sample code does the same thing very well. Can I ...
3
votes
7answers
2k views

Can I hide or make my iphone Application unsearchable on the App Store?

I want my application to be unsearchable from the App Store. I would like that only those users who sign in to my web site and then click the link of my iPhone application on app store, can install ...
2
votes
5answers
574 views

How to create or setup private app store for iPhone/iPad applications

Team, I would like to know how to set up appstore for its enterprise, with only iOS applications. To be more clear on my question, i run a business and i have applications created for my business and ...
2
votes
2answers
98 views

Sending memory warning in applicationWillResignActive

A few days ago I found a nice snippet on SO to test memory warnings by just sending a UIApplicationDidReceiveMemoryWarningNotification notification every 10 seconds or so. I really liked the idea ...
2
votes
1answer
85 views

Appstore approval - Redeeming third-party gift codes through app

We have been asked by our client to develop an application that would enable redeeming gift codes that unlock additional content. The Application itself would not provide a way to purchase those ...
2
votes
3answers
69 views

Does Apple Frown or Disallow Device-Specific Coding?

Short question: Does Apple frown, or completely disallow apps to code specifically for a device (not a feature, like Retina or Compass, but an actual device). Here's the context: I'm launching a 3D ...
2
votes
3answers
137 views

App ONLY for iPhone

My app has been rejected 2 times because its only a iPhone app, the second time i uploaded it i was pretty sure i had changed the build settings to iPhone only, but i guess not. On Targeted Device ...
2
votes
1answer
54 views

What is the expected iTunes App Store rating for using a user's own music?

So in my new music app game I'm creating, I'm allowing the user to pick a song from his own music, then play it in response to a prompt. Assuming the prompts are all 4+ rating, what would the ...
2
votes
1answer
67 views

UISplitView Controller Modification and Human Interface Guidelines

I'm trying to customize the location of my split vew controller, wanting to shift the UISplitView down by 200 pixels, in order to place a banner. I managed to do this by creating a CGFrame in my app ...
2
votes
1answer
507 views

App Rejected by App Store

This is second consecutive time that apple has rejected my application citing the following reason. The below is the reason cited by apple for rejecting my application. When i'm testing ...
2
votes
2answers
133 views

We were unable to complete your review because we could not download your app to iTunes

i published my app to the appstore but it was rejected because of the following reason: We were unable to complete your review because we could not download your app to iTunes. The review team ...
2
votes
1answer
407 views

Can I write an iPhone/iPad application that uses TCP/UDP communication?

Does Apple allow the use sockets (TCP or UDP) in iOS apps and allow them on the AppStore? If yes, please provide the official confirmation from Apple or some apps examples.
2
votes
1answer
265 views

V8 JavaScript Engine and Mac App Store

If I embed the V8 JavaScript Engine in my application (a game) is it still possible to distribute it in the Mac & iOS App Stores?
2
votes
2answers
211 views

AppStore approval and md5

I'm using md5 from <CommonCrypto/CommonDigest.h>. I don't use it for encryption purposes. I know that in submitting an app to AppStore, it's asked if the app uses encryption. Is this the ...
2
votes
3answers
261 views

Help me understanding a stacktrace

I've built an iPhone app. It works fine on the simulator and on my 4 iOS devices that run several iOS4 versions, including an iPhone 4 running iOS 4.3.3 However when I submitted it to the appstore it ...
2
votes
2answers
132 views

Will Apple reject an app for using KVC for setting parentViewController on UIViewController?

I am implementing custom UIViewController subclasses that emulate behaviours of UITabBarController and UINavigationController. I would like to make these classes general enough so that any ...
2
votes
1answer
851 views

iOS app rejected due to Missing In-App Purchase…how long until acceptance?

Recently we submitted an app to the App Store that utilizes In-App Purchase. We have a few different purchases available, one of which was not submitted during the initial submission process. The app ...
2
votes
2answers
140 views

iPhone app review question (UI related) [closed]

We just submitted an app for App Store review. A couple of our buttons (namely, login and sign up, which are really only used once per user) do not blink/change color when touched. Are these strong ...
2
votes
2answers
399 views

App Store Feedback Question

We received the following email for our new app submitted a week ago. Got a few questions: Anyone know what the "information needed" part means? Does this send us to the back of the queue - once we ...
2
votes
4answers
2k views

Custom UIAlertView and app approval

I am using a custom UIAlertView with a UITextField to read input from the user. I have been told that this custom view may cause my App to get reject by Apple; is that correct? If so, what is the ...
2
votes
1answer
499 views

iphone: deployment target

How is this possible? I configured my iPhone app like this: I pushed it into the App Store and now Apple says: You have indicated that your binary requires iOS 4.3 or later. Apps that ...
2
votes
1answer
693 views

Adding encryption to an iPhone app, how does it affect approval?

I am If I add encryption to an iPhone app (basically to encrypt a username/password when sending to the server), I will need to answer "Yes" to the question in iTunes connect of if I have added ...
2
votes
3answers
614 views

Supporting Amazon and Android market links inside application

So one of my applications was rejected from the Amazon app store today. The reason was because inside my app, I linked to the paid version of the app on the Android market. Disappointing, but ...

1 2 3 4 5