Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app has been rejected please help! I have an app on the app store I try to update. But the app was rejected. Below written my app source code can someone help me please.Thanks

//  MainViewController.h

#import "FlipsideViewController.h"

@interface MainViewController : UIViewController <FlipsideViewControllerDelegate,          UIPopoverControllerDelegate>

@property (strong, nonatomic) NSManagedObjectContext *managedObjectContext;

@property (strong, nonatomic) UIPopoverController *flipsidePopoverController;
- (IBAction)play;
- (IBAction)Link;
- (IBAction)pushemail;
- (IBAction)facebook;
@end

...................................

//  MainViewController.m


#import "MainViewController.h"
#import <MediaPlayer/MediaPlayer.h>
@implementation MainViewController
@synthesize managedObjectContext = _managedObjectContext;
@synthesize flipsidePopoverController = _flipsidePopoverController;

- (IBAction)play {
NSURL *url = [NSURL URLWithString:@"http://XXXXXXXX/mystream.m3u8"];
MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc]     initWithContentURL:url];
mp.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
[self presentMoviePlayerViewControllerAnimated:mp];

}

- (IBAction)Link {
[[UIApplication sharedApplication]
 openURL:[NSURL URLWithString:@"http://xxxxxx.com"]];

}

- (IBAction)pushemail {
[[UIApplication sharedApplication]
 openURL:[NSURL URLWithString:@"mailto:xxxxxxx.com"]];

}




- (IBAction)facebook {
[[UIApplication sharedApplication]
 openURL:[NSURL URLWithString:@"http://xxxxxxxxx.com"]];

}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{ [super viewDidLoad];

}

- (void)viewDidUnload
{


    [super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:  (UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else {
    return YES;
}
}

#pragma mark - Flipside View Controller

- (void)flipsideViewControllerDidFinish:(FlipsideViewController *)controller
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    [self dismissModalViewControllerAnimated:YES];
} else {
    [self.flipsidePopoverController dismissPopoverAnimated:YES];
    self.flipsidePopoverController = nil;
}
}

- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController
{
self.flipsidePopoverController = nil;
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showAlternate"]) {
    [[segue destinationViewController] setDelegate:self];

    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
        UIPopoverController *popoverController = [(UIStoryboardPopoverSegue *)segue   popoverController];
        self.flipsidePopoverController = popoverController;
        popoverController.delegate = self;
    }
}
}

- (IBAction)togglePopover:(id)sender
{
if (self.flipsidePopoverController) {
    [self.flipsidePopoverController dismissPopoverAnimated:YES];
    self.flipsidePopoverController = nil;
} else {
    [self performSegueWithIdentifier:@"showAlternate" sender:sender];
}
}

@end
share|improve this question
did they reject without a reason? – Rogier Jan 2 at 0:01
3  
Judging by the amount of source code, it might be because this app doesn't seem to be doing anything useful. If all it does is have a few links, and presumably a video of some sort, it would be better off implemented as a website. – Matti Virkkunen Jan 2 at 0:01

closed as not constructive by Mitch Wheat, Michael Petrotta, OrangeDog, H2CO3, sha Jan 2 at 0:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

What reason did Apple give for their rejection? Is that the entire app? It doesn't look like it does much. Just looking at it my guess is it was rejected for not being particularly useful.

share|improve this answer
apple response is........... We found the following issues with the user interface of your app: Did not include iOS features. For example, it would be appropriate to use native iOS buttons and iOS features other than just web views, Push Notifications, or sharing. These examples identify types of issues discovered in your app but may not represent all such issues. It would be appropriate to thoroughly evaluate your app to address these types of issues. – user1889927 Jan 2 at 0:08
1  
I.e. you should make your app actually do something different than a bog standard website. – Matti Virkkunen Jan 2 at 0:09
the problem is that I can not speak English well .. Please can you help – user1889927 Jan 2 at 0:14
1  
Basically your app doesn't do enough useful things to warrant being admitted into the App Store. Perhaps you should make a mobile web site instead? – powerj1984 Jan 2 at 1:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.