IPhone app crashes unpredictably (iAd related?)

Here's the top of the crash log that gets generated. Always the same.
Looks like iAds is always the culprit.
Is it my code, some anomaly with iAds, or what?
Thanks for any input.
-Phil
Application Specific Information:
objc_msgSend() selector name: bannerViewDidLoadAd:
iPhone Simulator 225, iPhone OS 4.1 (iPhone/8B117)
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 libobjc.A.dylib 0x02899907 objc_msgSend + 27
1 CoreFoundation 0x026ad4a1 -[NSInvocation invoke] + 145
2 CoreFoundation 0x026ae354 __forwarding__ + 1124
3 CoreFoundation 0x026ade72 CF_forwarding_prep0 + 50
4 iAd 0x02476222 -[ADDistributedMessagingCenter messagePort:receivedMessage:withData:] + 251
5 iAd 0x0247683b ADMessagePortCallBack + 75
6 CoreFoundation 0x026f428c __CFMessagePortPerform + 396
7 CoreFoundation 0x0271dff4 _CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION_ + 52
8 CoreFoundation 0x0267e807 __CFRunLoopDoSource1 + 215
9 CoreFoundation 0x0267ba93 __CFRunLoopRun + 979
10 CoreFoundation 0x0267b350 CFRunLoopRunSpecific + 208
11 CoreFoundation 0x0267b271 CFRunLoopRunInMode + 97
12 GraphicsServices 0x0301b00c GSEventRunModal + 217
13 GraphicsServices 0x0301b0d1 GSEventRun + 115
14 UIKit 0x00349af2 UIApplicationMain + 1160
15 wrazz 0x00002289 main + 121 (main.m:13)
16 wrazz 0x00002205 start + 53
Here's my code:
#pragma mark -
#pragma mark ADBannerViewDelegate Methods
- (void)bannerViewDidLoadAd:(ADBannerView *)banner {
if (!self.bannerIsVisible) {
[UIView beginAnimations:nil context:NULL];
banner.frame = CGRectOffset(banner.frame, 0, -50);
CGRect r = [self.planTableView frame];
self.planTableView.frame = CGRectMake(r.origin.x,
r.origin.y,
r.size.width,
r.size.height - 50);
[UIView commitAnimations];
self.bannerIsVisible = YES;
- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error {
if (self.bannerIsVisible) {
[UIView beginAnimations:nil context:NULL];
banner.frame = CGRectOffset(banner.frame, 0, 50);
CGRect r = [self.gameplanTableView frame];
self.planTableView.frame = CGRectMake(r.origin.x,
r.origin.y,
r.size.width,
r.size.height + 50);
[UIView commitAnimations];
self.bannerIsVisible = NO;
- (void)setupForiAds {
//// SET UP FOR IADS ////
static NSString * const kADBannerViewClass = @"ADBannerView";
if (NSClassFromString(kADBannerViewClass) != nil) {
if (self.adView == nil) {
self.adView = [[[ADBannerView alloc] init] autorelease];
self.adView.delegate = self;
self.adView.frame = CGRectMake(0, 368, 320, 50);
self.adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifier320x50;
[self.view addSubview:self.adView];
- (void)viewDidLoad {
[super viewDidLoad];
[self.navigationItem setTitle:@"Planning"];
UIBarButtonItem *backBarButtonItem = [[UIBarButtonItem alloc]
initWithTitle:@"Plans"
style:UIBarButtonItemStyleBordered
target:nil
action:nil];
self.navigationItem.backBarButtonItem = backBarButtonItem;
[backBarButtonItem release];
self.planTableView.delegate = self;
self.planTableView.dataSource = self;
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];
[nc addObserver:self
selector:@selector(keyboardWillHide:)
name:UIKeyboardWillHideNotification
object:nil];
[self setupForiAds];
CGRect temp = logView.frame;
temp.size.height = 0.0;
[logView setFrame:temp];

I don't have the problem, but I have seen messages that say that a restart usually fixes it, and if that doesn't clear cookies, history and cache in settings/Safari and then restart again. If this also fails try to Reset Network Settings, also in settings.

Similar Messages

  • IPhone App Crashing on iOS8

    Ever since I've upgraded my iphone to iOS 8 the app keeps crashing everytime I try to sync my offline playlists. The app works fine if I turn off all my offline playlists, however as soon I turn on one the app crashes over and over again.
    I've already restarted the phone multiple times, reinstalled the app multiple times and also tried to trick going around of changing the region on my phone to the UK and then back to the US but none of these solutions have helped! Please help - I live in New York city and listen to my spotify offline synced playlists while on the subway
    Phone: iPhone 5
    iOS: 8.0.2

    My spotify ios app has been crashing at startup for almost 2 weeks (iphone 5s). I have tried all aforementioned tricks except reinstalling the app, since I do not want to have to synchronize my local tracks again.
    I really am expecting an app update to fix this problem!  I have been browsing this forum and reading the threads related to this issue. the absence of any official spotify response is starting to irritate me at this point.
    Transparent communication with your paying customers would really go a long way. 

  • IPhone app crash diagnosis

    I have one user of my app who reports that she sees the default bitmap for 2-3 seconds and then goes straight back to the home screen: in other words, my app is silently terminating right at the start.
    Would a crash cause this - or would a crash also display some sort of error message?
    Is any diagnostic information extractable afterwards - even not-very-useful diagnostic information?
    (Fortunately it's a free app).

    You've got it right--your app is crashing on startup. It's probably generating a crash report, but I don't know what Apple does with them.
    Some things to think about:
    1. Does the user have a different device type? For example, does she have an iPod touch and you only tested with iPhones? Or the user has a 3G and you only tested with an EDGE model? Does the user have push Exchange enabled when you didn't in testing?
    2. How about languages and locales? Were there any background apps running and using resources, like iPod? Is there anything else odd about the device--is it unlocked or jailbroken, for example? (Jailbroken phones might have background apps using resources.)
    3. Look at your code closely. Are there any possible race conditions? (That's where two parts of the program are trying to operate on the same object at the same time, and depending on the order in which they get to act, the program will either succeed or crash.)
    4. Look very closely at how you use memory during initialization. In particular, try running your code under Guard Malloc; try it out with Instruments's leak-detection mode; and see if you can turn on zombie objects. Memory management bugs are a code smell; they often indicate deeper problems.
    5. If all else fails, just go ahead and refactor the code in your application's launch. No code is ever perfect, especially code in an iPhone app this close to the App Store's launch. Your spring cleaning might turn something up.

  • IPhone apps crashing & battery draining, why?

    My iPhone apps seem to be crashing after a few seconds including Music, email, facebook, sleepcycle and internet. My battery also seems to be draining really quickly all of a sudden. Today, my battery only lasted 4 hours without me using my phone! Has anyone else experienced this and knows of a fix?

    SuperSunT,  Thanks for posting this... as I'm having the same problem.
    Both my partner and I have iPhone 4S bought on the day they came out.  We weren't having any problems till last month I noticed my phone had the "lock" icon in the center at the top of the home screen and any apps (this "lock" icon is NOT the rotation lock, it is the one that should normally only show up when the phone is locked).  I could not get rid of it, no matter how many times I locked and unlocked my phone.  When I went to go to the Settings app/page, it was blank.  It was just a light grey background with tiny pinstripes (the usual background of the Settings page).   I was also unsuccessful turning the phone off just using the lock/power button.
    I finally had to hard-reset the phone as apps started to not work either. 
    I've only had the "lock" icon problem once, but I've had the Settings App/page blank several times, and each time I've then been unable to shut off the phone with just the lock/power button... then apps start to malfunction.
    The other day it did it and I just let it sit locked for about 10 minutes and it resolved.
    I have app crashes from time to time, but not anymore than before. 
    My partner's phone started having the Settings app/page being blank and being unable to shut off the phone wihtout a hard reset the other day as well! 
    I do not really want to do a clean install, and HATE when the Genius bar suggest this.  They don't ever suggest this for their Mac products, yet they're so nonchalant with this on the phone.  I know they're two VERY different products, but this is getting to be their "I don't know what's wrong.  Instead of me replacing your phone, you must drive back your hour drive, do this arbitrary thing which may or may not fix the problem, and when it doesn't, bring it back in so we can replace the phone and have it do the same thing again until an update comes out!" 
    Sorry, can you tell I've had a few too many problems where this is the case! 
    Anyway... I'm really curious about a few things.  I've not done a clean install since getting iOS 5 (even when I got the 4S I restored it from a 4 backup... but my partner just built his from scratch).  So, I know Game Center will take care of my games.  My e-mails are all stored on the server.  My notes are backed up to the Cloud.  I do have general Cloud backups turned off.  I know I'll need to transfer pictures.  But what other types of stuff do you suggest I should backup?  Basically, I'm asking what are the things you wished you had backed up that you forgot?
    And what is this "some apps let you send backups by email" that you speak of?  I've not seen that, but I've also not gone looking for it?  It drives me nuts that some apps have settings within the app, and some have them in the Settings app/page... and even worse, some have both! 
    Sorry this post is so long, but I've been searching for other people having these problems for a month now... starting with the "lock" icon problem (I figured that was the one identifying thing).  Unfortunately, I just ended up with hundreds of people who couldn't figure out that they had turned on the rotation lock and couldn't turn it back off.   
    Thanks for your (or anyone else's) help in advance! 
    P.S.  I'm including pictures of the "lock" problem as well as the blank Settings page! 
    This first one shows the "lock" icon at the top.  Clearly I am on the "Home" screen and the phone is not locked.
    This second one is while I'm in the Settings app.  This was taken the same day, and I just noticed that not only is the "lock" icon not showing, neither is the clock.  I have another screen shot from a different day where I wasn't getting the "lock" icon problem, but the clock was in the middle at the top as it should be. 

  • In IPhone Apps crash when press back buton . When press back back button Last class is appeared slightly slighly ash, with no error or warning .

    Hi,
    I am developing apps on for 4.1 and on Xcode3.2. My Apps crash when press back buton . When press back back button Last class is appeared slightly than crash, with no error or warning ....Here are the code....crash on Back Funtion
    #import "TransactionSummaryDetailViewController.h"
    #import "TransactionSummaryData.h"
    #import "Constant.h"
    #import "DataBase.h";
    #import "Common.h"
    #import "YPCardHolderServiceService.h"
    #import "SelectionScreenViewController.h"
    @implementation TransactionSummaryDetailViewController
    @synthesize table,cardReference;
    @synthesize waitIndicator,transactionsummary,keyArray,valueArray,isSummaryAvailable;
    @synthesize startDate,endDate;
    // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
        if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
            // Custom initialization
        return self;
    -(void)getrowcount{
        if(transactionsummary.cardholdernmae !=nil){
            [keyArray addObject:@"Card Holder Name: "];
            [valueArray addObject:transactionsummary.cardholdernmae];
        if(transactionsummary.cardnumber!=nil){
            [keyArray addObject:@"Card Number: "];
            [valueArray addObject:transactionsummary.cardnumber];
        if(transactionsummary.debittransactioncount != nil){
            [keyArray addObject:@"Debit Tx. Count: "];
            [valueArray addObject:transactionsummary.debittransactioncount];
        if(transactionsummary.debittransactionvalue!=nil){
            [keyArray addObject:@"Debit Tx. Value"];
            [valueArray addObject:transactionsummary.debittransactionvalue];
        if(transactionsummary.credittransactioncount!=nil){
            [keyArray addObject:@"Credit Tx. Count: "];
            [valueArray addObject:transactionsummary.credittransactioncount];
        if(transactionsummary.credittransactionvalue!=nil){
            [keyArray addObject:@"Credit Tx. Value: "];
            [valueArray addObject:transactionsummary.credittransactionvalue];
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
        appDelegate = [[UIApplication sharedApplication]delegate];
        keyArray = [[NSMutableArray alloc]init];
        valueArray = [[NSMutableArray alloc]init];
        [self getrowcount];
        NSLog(@"Key Array Count is %d",[keyArray count]);
        [table setBackgroundColor:[UIColor clearColor]];
        [table setSeparatorColor:TableViewCellSeperatorColor];
        [waitIndicator setHidden:YES];
        [self setTitle:@"Summary Details"];
        UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
        [button setImage:[UIImage imageNamed:@"list.png"] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(BacktoView) forControlEvents:UIControlEventTouchUpInside];
        [button setFrame:CGRectMake(0, 0, 76, 44)];
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
        if(!isSummaryAvailable)
            if([Common isNetworkAvailable])
                [waitIndicator startAnimating];
                YPCardHolderServiceService *services = [[YPCardHolderServiceService alloc] init];
                YPTransactionsSummaryRequest *summaryRequest = [[YPTransactionsSummaryRequest alloc] init];
                summaryRequest.SC = appDelegate.SC;
                summaryRequest.userName = appDelegate.userName;
                summaryRequest.valid =TRUE;
                summaryRequest.cardReference =[NSString stringWithFormat:@"%@",cardReference];
                NSLog(@"Start Date Is %@ and End Date is %@",startDate,endDate);
                summaryRequest.startDate = startDate;
                summaryRequest.endDate = endDate;
                summaryRequest.applicationType = @"M";
                [services getTransactionsSummary:self action:@selector(getTransactionsSummaryHandlers:) transactionsSummaryRequest:summaryRequest];
                [summaryRequest release];
                [services release];
        [super viewDidLoad];
    //Handle the Response of getTransactionsSummary
    -(void)getTransactionsSummaryHandlers:(id) value
        [waitIndicator stopAnimating];
        // Handle errors
        if([value isKindOfClass:[NSError class]]) {
            NSLog(@"%@", value);
            return;
        // Handle faults
        if([value isKindOfClass:[SoapFault class]]) {
            NSLog(@"%@", value);
            return;
        // Do something with the YPLoginResponse* result
        YPTransactionsSummaryResponse* result = (YPTransactionsSummaryResponse*)value;
        if(result.statusCode == 0)
            NSLog(@"Number of Transaction is =%d",[result.transactionSummaryList count]);
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            NSString *deleteQuery = @"delete from TransactionSummary where userid = ";
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            deleteQuery = [deleteQuery stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"delete query= '%@'",deleteQuery);
            [DataBase deleteDataFromTable:deleteQuery];
            NSLog(@"delete query= '%@'",deleteQuery);
            //for (int i =0; i< [result.transactionSummaryList count]; i++)
            for (int i =0; i< [result.transactionSummaryList count] -2; i++)
                NSLog(@"for loop= %d",i);
                YPTransactionSummaryDetails *transactionSummary = (YPTransactionSummaryDetails*)[result.transactionSummaryList objectAtIndex:i];
                NSLog(@"cardholdername= '%@'",transactionSummary.cardholderName);
                /*NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','xxxx xxxx xxxx %@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,
                                                                   appDelegate.userID]];*/
                //Add by sarvesh
                NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,cardreference,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,cardReference,
                                                                   appDelegate.userID]];
                NSLog(@"Insert Query for Transaction Summary is %@",insertQuery);
                [DataBase InsertIntoTable:insertQuery];
            //Read Update Data From DataBase and Refresh Table
                NSString *query = @"Select * from TransactionSummary where userid = ";
                query = [query stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"select query= %@",query);
                NSMutableArray *temp=[DataBase getTransactionSummaryTableData:query];
                if([temp count] > 0)
                    transactionsummary = (TransactionSummaryData*)[temp objectAtIndex:0];
                    [keyArray removeAllObjects];
                    [valueArray removeAllObjects];
                [self getrowcount];
                [table reloadData];
    -(void)viewDidAppear:(BOOL)animated
        CGFloat navBarHeight = 50.0f;   
        CGRect frame = CGRectMake(0.0f, 20.0f, 320.0f, navBarHeight);
        [self.navigationController.navigationBar setFrame:frame];
        [super viewDidAppear:animated];
    -(IBAction)BacktoView
        NSLog(@"in back function..TrasactionSummaryDetail");
        SelectionScreenViewController *screenView=[[SelectionScreenViewController alloc] initWithNibName:@"SelectionScreenViewController" bundle:nil];
        [self.navigationController popViewControllerAnimated:YES];
        [screenView release];
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewCellEditingStyleNone;
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
        return 1;
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
        return cellHeightForGroupedTable;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        if(section == 0)
            return [keyArray count];
        else       
            return 0;
    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
        NSString *title = nil;
        switch (section){
            case 0:{
                //title = @"Summary Details";
                break;
        return title;
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
        if ([self tableView:tableView titleForHeaderInSection:section] != nil) {
            return tableHeaderHeight;
        else {
            // If no section header title, no section header needed
            return 0;
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
        NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
        if (sectionTitle == nil) {
            return nil;
        // Create label with section title
        UILabel *label = [[[UILabel alloc] init] autorelease];
        label.frame = CGRectMake(20, 6, 300, 30);
        label.backgroundColor = [UIColor clearColor];
        label.textColor = HeaderTextColor;
        label.shadowColor = HeaderTextShadowColor;
        label.shadowOffset = CGSizeMake(0.0, 1.0);
        label.font = HeaderTextFontSize;
        label.text = sectionTitle;
        // Create header view and add label as a subview
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320,60)];
        [view autorelease];
        [view addSubview:label];
        return view;
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        UITableViewCell *cell = nil;
        NSString *cellIdentifier;
        cellIdentifier = @"SectionsTableIdentifier";
        int row = [indexPath row];
        CGRect nameLabelRect = CGRectMake(19 , 8, 240, 29);
        CGRect cardlabelRect = CGRectMake(19,31,240,15);
        UILabel *nameLabel = [[UILabel alloc] initWithFrame:nameLabelRect];
        UILabel *cardnumber = [[UILabel alloc] initWithFrame:cardlabelRect];
        cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
        if(cell == nil){
            cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
        // Remove all subview from cell content view
        for (UIView *view in cell.contentView.subviews){
            [view removeFromSuperview];
         [cell setAccessoryType:UITableViewCellAccessoryNone];
        [nameLabel setTextColor:firstLabelFontColor];
        [nameLabel setFont:firstLabelFont];
        [nameLabel setFont:firstLabelFontSize];
         nameLabel.textAlignment = UITextAlignmentLeft;
         nameLabel.text = [NSString stringWithFormat:@"%@ : %@",[keyArray objectAtIndex:row],[valueArray objectAtIndex:row]];
         [cell.contentView addSubview: nameLabel];
         cell.selectionStyle = UITableViewCellSelectionStyleNone;
        [cell setBackgroundColor:[UIColor clearColor]];
        [cell setBackgroundColor:TableViewCellColor];
        [nameLabel setBackgroundColor:[UIColor clearColor]];
        [cardnumber setBackgroundColor:[UIColor clearColor]];
        [cardnumber release];
        [nameLabel release];
        return cell;
    // Override to allow orientations other than the default portrait orientation.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation {
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)didReceiveMemoryWarning {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    - (void)viewDidUnload {
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (void)dealloc {
        [table release];
        [waitIndicator release];
        [keyArray release];
        [valueArray release];
        [transactionsummary release];
        [super dealloc];
    @end

    This is the user-to-user tech support site.  For carrier issues go to the Dev forums.
    You might want to note that the current iOS is 4.3.3, and the current SDK is 4.3 and XCode 4.0.2

  • IPhone apps crashing.... constantly

    Hey all,
    I don't see anyone complaining about this so maybe I just have a bad phone....
    The calendar, iPod, Safari, Mail, Photos, and Maps all crash. I will be able to listen to music for anywhere from a few seconds to a few hours and suddenly the iPod vanishes and the music stops. (Not a battery issue). If I try to access any applications while I am listening to music, both apps crash instantly.
    Even without iPod running, Safari crashes constantly, as does Mail.
    At least when apps crash, they basically just kick you back to the home screen. No dialog, no alerts... just "poof".
    Anyone else?

    You're not alone.
    I've had various "crashes" that take me back to the home screen. A power cycle generally does the trick for me. You may even want to try a reset.
    My guess is that some of these issues will be addressed in a software update.
    iMac Core Duo, 1GB RAM, Lacie 160GB Firewire HD   Mac OS X (10.4.10)   iMac G5, Two Mac minis, 5G iPod (Black), iPhone

  • Iphone App crashes since using Air 4.0

    I have an APP called "Join Our Games Poker" into Itunes Store.
    It was generated using Flash Builder 4.7 with Air 3.9 SDK.  But since Apple change the requirements in the store, the only way
    to get an APP approved is using the Air 4.0  SDK Build 1619 or higer versions (now Im trying with Air SDK 13.0).
    Now I'm trying to publish a similar APP that uses the same code that Join Our Games Poker has, but with different name and graphics.
    I have to use Air 4.0  SDK Build 1619 or Air 13.0 to be able to publish it in the store.
    If I run this new APP in any simulator or even directly into my Iphone 4S using the USB cable and debugging mode through Flash Builder 4.7, it works fine.
    The same is true when I export a release build of this APP for Android.
    But when I export a release build for Iphone Distribution or AdHoc versions, my APP runs fine for a while, but at some point it crashes. Any clue about the problem I have?  Thanks.
    When I use Air 4.0, I got this log file in the Iphone 4S:
    Incident Identifier: 69F97CE4-C216-4A7D-B266-D628CC258B0C
    CrashReporter Key:   e1880407586bb5a94db8ec33042021d62227c4d2
    Hardware Model:      iPhone4,1
    Process:             Poker Casino School [264]
    Path:                /var/mobile/Applications/E15BDD44-6710-4FAE-A596-A37997AECBE2/Poker Casino School.app/Poker Casino School
    Identifier:          com.pokercasinoschool
    Version:             1.0.3 (1.0.3)
    Code Type:           ARM (Native)
    Parent Process:      launchd [1]
    Date/Time:           2014-02-27 00:51:48.942 -0600
    OS Version:          iOS 7.0.6 (11B651)
    Report Version:      104
    Exception Type:  00000020
    Exception Codes: 0x000000008badf00d
    Highlighted Thread:  0
    Application Specific Information:
    Poker Casino Sc[264] has active assertions beyond permitted time:
        <BKProcessAssertion: 0x16d81cf0> identifier: Suspending process: Poker Casino Sc[264] permittedBackgroundDuration: 10.000000 reason: suspend owner pid:28 preventSuspend  preventThrottleDownCPU  preventThrottleDownUI  preventSuspendOnSleep

    Yeah, we seem to be getting a similar issue with our Air app as of version 2.6.  We're trying to downgrade Air and confirm that it's just 2.6, but here is the error report from Windows 7 Event Viewer:
    And Air 2.7 seems to be giving us memory leaks so we're not using that either.
    Simon.
    Faulting application name: MenucastProjector.exe, version: 0.0.0.0, time stamp: 0x4d90a051
    Faulting module name: Adobe AIR.dll, version: 2.6.0.19140, time stamp: 0x4da50998
    Exception code: 0xc0000005
    Fault offset: 0x001700b3
    Faulting process id: 0x950
    Faulting application start time: 0x01cc05d2bd6836c4
    Faulting application path: C:\Program Files (x86)\Menucast\MenucastProjector\MenucastProjector.exe
    Faulting module path: c:\Program Files (x86)\CommonFiles\Adobe AIR\Versions\1.0\Adobe AIR.dll
    Report Id: 9f6f7673-73de-11e0-a0e0-002522a0bc81

  • Both my iPad and iPhone apps crash, they close up without a reason. I've now reset both devises several times but it still happens. What is the issue? Is it my devices?please help it is annoying me now! Thank you

    I have an issue with my iPad and iPhone. They apps keep on crashing, even the standard apps like mail and safari, notes etc. I have reset the divices and have the latest software, what am I doing wrong? Why would this happen? It is annoying and I want to fix it as I am in the middle of stuff and apps just close! Help.

    I'm guessing it's an app that is on both devices.  Delete all common apps, reset and see how they run.
    Also try clearing your recently used list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Tap and hold any icon until they wiggle
    - Continually press the red to delete the apps from this list.
    - Press the home button twice when done
    With a quick finger, you can clear this list very quickly.

  • IPhone: App crashes on one customer's device

    I have an odd problem here. I've sold about 2000 units of my app so far and all is fine, except for one customer that says it crashes on start up. He's using the same device I have: Touch with 2.1, not hacked. One of the beauties of developing for this platform is the stability and that everyone's device is like everyone elses. So does anyone have ideas as to what could be causing something like this?

    Ask the customer to look for a crash report in ~/Library/Logs/CrashReporter/MobileDevice/'Device_Name', and have him email it to you. It may or may not be of help.
    It should be there if he has connected to iTunes since trying to run your App. Sorry, I don't know the equivalent directory in Windows.

  • IPhone Apps Crashing

    Hey guys. I have a 3G iPhone with a few apps on it. Everything was working fine until the day 2.0.1 came out and I installed it on my phone. After that none of my apps would work. All that works is what was pre-installed on the phone. I've tried restoring from backup and I've tried restoring without backup. Any idea whats going on? Am I completely screwed at this point?

    I am having the same problem with the 2.0.1 software update. What I did to fix the problem was:
    1.)Unsync the apps off the iPhone.
    2.)Disconnect your iPhone from the computer.
    3.)Reset iPhone: press and hold the Sleep/Wake button and the Home button at the same time for at least 10 seconds. During this time, a red "power off" slider may appear and the screen may go black, but do not release Sleep/Wake and Home buttons until the Apple logo appears.
    3.)Reconnect your iPhone to the computer and resync your apps and they should work again.
    But there is still a "bug" with the software 2.0.1. If you "Reset" your iPhone at anytime by holding the Sleep/Wake button and the Home button the apps will not work again after the restart completes. Then you will have to perform the same steps I have listed above to get them working again. This is a huge pain in the ***. And Apple needs to fix and address this problem. I am having this problem on my iPhone 2G and my girlfriends 3G iPhone. I have had to do this 10 times already between both phones, it's not fun. =8-(

  • What is Apple doing to fix iPhone app failure

    This problem looks like a bad MS conflict error... One of the biggest reasons I got away from PC.
    I have a new (now 4 days old as of this posting) 3G iPhone with all updates. It has been registered with Apple and synced with my iTunes. I have loaded free apps on my iPhone with the reasoning being that if the free apps don't work, I surly will not buy an app from the designer of a non working free app.
    I have done the reset and reboot, which "some" of the apps did work fine. But all, non standard iPhone apps, crash on startup following a sync section with iTunes.
    Without claiming to be a programer or even a technician, it appears that the cause of the down loaded app failure stems from the sync with iTunes and maybe poor app design. Anyone from the PC world will recognize this as a "conflict error".
    At the iPhone introduction Keynote address, I feel Steve Jobs lead me to believe that is would not happen with the 3rd party development of apps. It's just not the "Apple" way. I maybe wrong in that it is not an actual "conflict error" but something else, still, it is not what I have come to expect from Apple and hope that this problem is not a sign of the future with Apple. It also appears that better "quality assurance" is needed with app development and iPhone syncing.
    My question is:
    What, if anything, is Apple doing to solve this massive problem with downloaded apps and the iPhone and syncing with iTunes?
    If someone could show me a link with an Apple reply to solving this problem besides reset/reboot/reload I would be a little more confident in knowing that I didn't waste good money and "TIME" in getting the iPhone.
    This boot-reboot, reset, wipe it clean approach is not good, to much like living in the MS world, not Apple.

    Going to the local Apple store this morning...
    My problem is not uncommon as the board is showing signs of this happening to many others as well. That is where I found the restore and reboot information to try to solve the issue of crashing apps.
    I understand that Apple will not "give away the cow", but letting iPhone users know that the problems they are having are being addressed by Apple is a little more comforting than nothing at all. Other wise, all the apps in world are useless and even more importantly worthless, if a person has to reset/reboot/reload just to get them to work.
    IF Apple can not address the basic problems with todays iPhone apps, why should one believe that the iPhone 3.0 OS is any better? Using a PC comparison, which is better, XP or Vista. If the current iPhone OS of 2.2. what ever is not working that well (as related to down loaded apps and iTunes), will OS 3.0 be any better?
    The waste of time I refer to is in going to the apps store and downloading the apps... Again why by apps if the free version does not work?

  • Screen flickering after iOS 6.1 update and some apps crashing frequently on my iPhone 4 .. I didn't have this in 6.0.1 back when people complained about it

    hello, I had no keyboard flickering issues back when my iPhone 4 was on iOS 6.0.1 then I updated to 6.1 yesterday and now I have apps crashing frequently and keyboard flickering? anyone else having the same issue after the update? any known solution?

    I'm having the same issue on my iPhone 4 since yesterday when I updated to iOS 6.1 from 5.1.1.
    After about an hour after the upgrade, it crashed/rebooted itself and went completely white/grey screen with a brighter white line in the middle. My power/sleep button was broke already, so I couldn't do anything on it. I left it to drain the battery for about 6 hours.  During that time, the edges around the white/grey screen became darker and darker like burn-in effect. After it ran out of the battery, I connected the phone to the PC through USB and iTunes let me restore it to iOS 6.1 firmware I downloaded before.
    The restore was successful, but the entire screen keeps flickering rapidly, not just a part of the screen.
    Is it hardware or software related issue?? Any idea?

  • IOS8 Slow Performance, Keyboard Bugs and App Crashes on iPhone 5

    Since updating my iPhone 5 to iOS8, performance has slowed considerably: Apps take longer to launch and interface animation stutters.
    When turning the phone on and off, the screen goes black - I have to keep pressing the on/off sleep/wake switch to get the screen to illuminate.
    Typing this in landscape on my iPhone 5 (using the standard keyboard - I've not tried installing any third party keyboards yet) is taking ages: There are now only two lines of text visible due to the word-suggestion feature. I've just noticed as I type this that the text display isn't automatically scrolling, so unless I manually scroll down the window, I can't see what I'm typing!
    Positioning the magnifying glass is challenging - its position is not following my finger! The behaviour of the backspace is also unpredictable . . . and I am now typing this on my Mac because Safari crashed mid-sentene ! (Thank goodness this site auto-saves - I didn't have to start again when I logged into my Mac!)
    I like all the new iOS8 features (although the key feature for me - the health app - is not linking to any fitness apps yet due to an Apple-acknowledged bug). But the performance hit, bugs and app crashing created by the iOS8 upgrade means I now want to return to iOS7.
    I'm surprised at these issues because, unlike previous iOS releases, IOS 8 was in public beta for a few months, as well as being with developers since WWDC.
    If Apple are going to move iOS deeper into the enterprise (with IBM for example) its needs to prioritise stability - even if it means moving from an annual upgrade cycle. Apple hasn't managed this with Mac OS - the last three Mac OS updates have not been usable in an enterprise/Pro App environment until around 9 months after their release.
    Message was edited by: KWiPod

    ios8 for my iphone 5 = crashes, hot phone, restarts, dropped calls, funny looking fuzzy 'senior picture screen' with frost on the perimeter.....  Just opening 'message' for texts takes 3-4 seconds to load, where previously, it was milliseconds latency speeds.  I think they pressed this OS beyond the reasonable functional limit of the hardware (phones), especially with the older phones and/or phones with less memory.
    It's like an athlete on steroids, the bones can't handle the force of the muscles and something is gonna BREAK!
    When did we ever come to think that $400 phones would become 2-4 year disposable items and revere at the glory of it all!  And whether we realize it or not, it's being shoved down our throats.
    Just fix the OS please so my phone can work for me as it has in the past.
        For the $$ being paid out, we shouldn't have to reset, restart, restore......
    DB
    -kinda reminds me of the iRobot update-

  • Mail app keeps crashing (and other related problems)

    A few days ago, my Mail app began crashing on seemingly unrelated events, so I assume my data got corrupted. I won't explain all the scenarios because it's a complete mess. To keep it simple, I have only 2 accounts and they are both on Gmail, so no backups are needed. I'd like to try doing a complete wipe of all data that the Mail app uses and that should fix it.
    What files/folders does Mail use? So far, I've found:
    ~/Library/Mail
    ~/Library/Containers/com.apple.mail
    I've also seen someone mention ~/Library/Preferences/com.apple.mail.plist, but I don't have this file.
    After deleting the above and creating my mail accounts, the crashes are back. The only possibilities I can think of are:
    1. I haven't deleted EVERYTHING owned by Mail yet. <-- What other files/folders belong to the Mail app?
    2. Mail is depending on something else on my system that is broken.
    3. Mail app itself somehow became corrupted.
    4. Something being synced from my Gmail is not properly being handled, resulting in a crash.
    When this started happening (if it helps):
    1 day after installing the OS X update 10.8.3 as well as MacBook Pro Retina SMC Update v1.1, my MBP froze as soon as I loaded League of Legends. This was followed by a reboot as I couldn't Cmd+Tab out of the game. I wasn't aware of the Force Close App shortcut at the time, so I used the power button. That was the only time this happened, and it has worked fine a few times after the updates were applied and also worked after the reboot following the freeze. Since that time, I have encountered another issue where just about all of my apps crashed simultaneously -- no 3D-accelerated apps were even running this time.
    Since then, I've updated VirtualBox from 4.2.8 to 4.2.10 (seemed like something that could cause this weirdness as I always have a VM running) and have not had any problems except Mail crashing all the time.
    This question is primarily about fully resetting the Mail app to clean settings/data, but any thoughts on what may have happened are also welcome

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Facebook app crashes as soon as i open it on  my iphone.What to do tried reinstalling still the same. What to do??? I am using iphone5

    My facebook app  crashes as i open it. I ave rebootes the system on my iphone still no use. I also uninstalled the app and put a new one but its the same. Please advice . Using iphone 5 Nd ios7.0.3

    doesn't matter what iphone you have, the issue isn't your phone, but with facebook, either contact the app devloper or look at their support site to troubleshoot.  Or leave them a review stating your issue.

Maybe you are looking for

  • How do you resize multiple artboards in Illustrator at the same time?

    Hi, This is a question that has been bugging me for a while.  I'm currently on CS6 but I'm looking for a solution that can also work on CS5 for a co-worker. Having multiple artboards has been established since CS4 and I have yet to see an official wa

  • LSMW Specify files--multiple files

    Hi , I have the data in two files. how can i specify these two files . i know we have to use the option wildchar in hte step "specify files" can anyone give me the exact procedure to do the same. Thanks in advance

  • Authentication Failed!? Can someone help please?

    Hi everyone, I'm in need of some real assistance. I have currently purchased and installed ARD 3.0 on my laptop. My girlfriend has just bought her first Mac computer - a new intel iMac. Wanting to help her remotely, I installed the client installer c

  • How can I get current Number file name in a cell ?

    I want to write current Number (3.5) file name in a cell. It was working in previous version of Number but not with latest one. Thanks.

  • Ipod Hifi + Airport Express - Do I need a cable as well ??

    Folks I've just ordered an Ipod Hifi ( I hope they don't bring out a black one now! ) and an Airport Express from Amazon - much cheaper than Apple store. I'd like to use Airtunes from my laptop via Airport Express and also have the Hifi connected up