Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
The review team is right most of the time of rule 10.6. You should listen to the developers here and improve your app. The appeal will take your time and you still have to improve it at the end
Something wrong here! the bluetooth remote control to control iPad, then iPad send data to wired monitor?
As I suggested, Why don't you use Airplay instead? You want to scroll the information to the big screen right?
Unless you need something lik…
You should check your crash log first, but I think your app was crashed because of parsing function doesn't have error handler. You should check your data is valid (json, xml...) before parsing.
You should use Reachability class to check if the internet or connection is available or not first.
The class can be found here
There is a ARC version here
You just need to add Settings.bundle. In the Root.plist, add toggle switch with boolean value. Set identifier = enabled_facebook, set default value = NO
Then somewhere in your code add:
if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"en…
I can view only on your mac/pc. Go to iTunes > Appstore > Select the country flag on bottom right of that page.
In iphone/ipad you only be in the store's country that you registered.
The problem is your iTune account tied to your country Appstore, but technically it will show correct currency format and sign of iTune account's owner.
This should work?
// Create formatter
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setCurrencyCode:@"EUR"]; //check your currency code that you need
[formatt…
If you have programming background then you should get iOS SDK and Xcode. Otherwise hire someone to do it and learn from the code.
Keep in mind, the audio playback sample is fairy easy to do as you know there are thousand of "soundboard" app in Ap…
By default Xcode will show warnings if there is any deprecated class/method. If you select your base SDK different than the latest one, the compiler will show errors when you compile it.
Or use
- (BOOL)respondsToSelector:(SEL)aSelector
There is a Mac app called "PaintCode" and it's designed for those who love to have fully custom shape with Objective-C. It's well worth money to have it.
If you're following the App review guideline then you won't have any problem. A lot of developers always think if there is an app on App store that breaks the rules, then they can break it. That's wrong!
If you have doubt about the rules, don't do …
ok thanks {dcool} , where can i extract further more info related to my topic. provide me any related link plz.
You can check the wwdc2012, session 705 - Advanced Core Bluetooth, if you're using BLE.
First of all, why bluetooth? since bluetooth is mostly one-to-one connection. If your app supports only ip4s and above then you can use CoreBluetooth framework. Otherwise the standard bluetooth protocol doesn't support custom data (e.g. your files)
Navigation controller stores the views in the stack, so you can access by
UIViewController * viewController = [self.navigationController.viewControllers objectAtIndex:THE_INDEX_YOU_WANT_TO_ACCESS];
Keep in mind, if the app is really scam or manipulate the ranking then Apple will remove it. Otherwise Apple still have 30% of the cut of duplicated/copy app, they would do nothing.
If you want to store your questions locally, then I suggest you to store it as plist. Your plist might be an array of questions and each question might be a dictionary object.
Good luck,
ITC mobile (iPad/iPhone) is reporting correctly in both dashboard and sales. The website dashboard certainly is not correct, unfortunately!
That's true. Website dashboard data is totally screwed up and doesn't match to any download values.
ITC is…
Hello i need to made a simple application to enter the UPC code and save and the send the sqllite db to a pc to load and compare the file
How i start this
I really don't understand what your question is. An application with db is not really simple.
Do you see something like this log when your app at launch?
Reachability Flag Status: -R -----l- networkStatusForFlags
Reachability Flag Status: -R ------- networkStatusForFlags
It stands for local address is reachable.
@surlac Recent vulnerability in iOS as per hacker news , Stealing password thehackernews.com/2013/03/apple-app-store-was-vulnerable-for-more.html#_
That's client and server implementation problem, nothing to do with iOS.
No offense, most of Android users want their apps are FREE so Android dev don't make as much profit as iOS dev. Also there is a very nice article about Android Indie developer
I would check something like this.
-(void)scrollViewDidEndDragging:(UIScrollView*)scrollView willDecelerate:(BOOL)decelerate
{
if (!decelerate)
{
//do something else
}
}
-(void)scrollViewDidEndDecelerating:(UIScrollView*)scro…