SIGABRT Error Xcode 5

Am making an iPhone app and I am new to Xcode and IOS programming - whenever I run the app in the simulator and tap on the button which sends me to the next view it crashes and gives me this message:
In the debugger it gives me this:
2014-02-26 19:42:25.396 ShoeForYouStoryboard[2452:70b] -[UIViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x8c79730
2014-02-26 19:42:25.400 ShoeForYouStoryboard[2452:70b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x8c79730'
*** First throw call stack:
Thanks if you can help.

Your app is using auto layout, which was introduced in iOS 6. Your iPhone is running iOS 5, which doesn't support auto layout. That's why the code works on your iPad, but not your iPhone.
If you want your app to work on both devices you have to turn off layout and set your app's deployment target to iOS 5. To turn off auto layout, select your xib file from the project navigator. Open the file inspector by choosing View > Utilities > Show File Inspector. Deselect the Use Auto Layout checkbox.
To change the deployment target, select your project from the project navigator to open the project editor. Select your project from the left side of the project editor. Click the Info button at the top of the editor. Choose iOS 5.0 from the iOS Deployment Target combo box.

Similar Messages

  • SIGABRT error when choosing a row of a tableview

    Hello, I am creating an iPhone app and I keep getting a "SIGABRT" error. I have a tableview where I want a separate webpage pushed for each rows.
    Currently, what happens is that the table displays; however, when I pick a row it gives me a SIGABRT error. Please help.
    Here is my first view (table view) .h file:
    #import <UIKit/UIKit.h>
    @interface videoTableViewController : UITableViewController
        NSArray *videos;
    @property (strong, nonatomic) NSArray *videos;
    @end
    Here is my first view (table view) .m file:
    #import "videoTableViewController.h"
    #import "videoURLController.h"
    @interface videoTableViewController ()
    @end
    @implementation videoTableViewController
    @synthesize videos;
    - (id)initWithStyle:(UITableViewStyle)style
        self = [super initWithStyle:style];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        [super viewDidLoad];
        videos = [NSArray arrayWithObjects:@"Welcome", @"Hello", @"Goodbye", nil];
        // Uncomment the following line to preserve selection between presentations.
        // self.clearsSelectionOnViewWillAppear = NO;
        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem;
    - (void)viewDidUnload
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    #pragma mark - Table view data source
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
        // Return the number of sections.
        return 1;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        // Return the number of rows in the section.
        return [self.videos count];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        static NSString *CellIdentifier = @"videoCell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        // Configure the cell...
        NSUInteger row = [indexPath row];
        cell.textLabel.text = [videos objectAtIndex:row];
        if (row == 0)
            cell.detailTextLabel.text = @"Welcome";
        if (row == 1)
            cell.detailTextLabel.text = @"What we value";
        if (row == 2)
            cell.detailTextLabel.text = @"What does Honor mean?";
        return cell;
    // Override to support conditional editing of the table view.
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the specified item to be editable.
        return YES;
    // Override to support editing the table view.
    - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
        if (editingStyle == UITableViewCellEditingStyleDelete) {
            // Delete the row from the data source
            [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
        else if (editingStyle == UITableViewCellEditingStyleInsert) {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    // Override to support rearranging the table view.
    - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
    // Override to support conditional rearranging of the table view.
    - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the item to be re-orderable.
        return YES;
    #pragma mark - Table view delegate
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
         videoURLController *detailViewController = [[videoURLController alloc] initWithNibName:@"videoTableViewController" bundle:nil];
        UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
        if (indexPath.row == 0){
            [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
         // Pass the selected object to the new view controller.
         [self.navigationController pushViewController:detailViewController animated:YES];
    @end
    Here is my videoURLController (second view/web view) .h file?
    #import <UIKit/UIKit.h>
    @interface videoURLController : UIViewController
    @property (strong, nonatomic) IBOutlet UIWebView *webView;
    @end
    Here is my videoURLController (second view/web view) .m file?
    #import "videoURLController.h"
    @interface videoURLController ()
    @end
    @implementation videoURLController
    @synthesize webView;
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        [super viewDidLoad];
      // Do any additional setup after loading the view.
    - (void)viewDidUnload
        [super viewDidUnload];
        // Release any retained subviews of the main view.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    @end

    Hello, I am creating an iPhone app and I keep getting a "SIGABRT" error. I have a tableview where I want a separate webpage pushed for each rows.
    Currently, what happens is that the table displays; however, when I pick a row it gives me a SIGABRT error. Please help.
    Here is my first view (table view) .h file:
    #import <UIKit/UIKit.h>
    @interface videoTableViewController : UITableViewController
        NSArray *videos;
    @property (strong, nonatomic) NSArray *videos;
    @end
    Here is my first view (table view) .m file:
    #import "videoTableViewController.h"
    #import "videoURLController.h"
    @interface videoTableViewController ()
    @end
    @implementation videoTableViewController
    @synthesize videos;
    - (id)initWithStyle:(UITableViewStyle)style
        self = [super initWithStyle:style];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        [super viewDidLoad];
        videos = [NSArray arrayWithObjects:@"Welcome", @"Hello", @"Goodbye", nil];
        // Uncomment the following line to preserve selection between presentations.
        // self.clearsSelectionOnViewWillAppear = NO;
        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem;
    - (void)viewDidUnload
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    #pragma mark - Table view data source
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
        // Return the number of sections.
        return 1;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        // Return the number of rows in the section.
        return [self.videos count];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        static NSString *CellIdentifier = @"videoCell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        // Configure the cell...
        NSUInteger row = [indexPath row];
        cell.textLabel.text = [videos objectAtIndex:row];
        if (row == 0)
            cell.detailTextLabel.text = @"Welcome";
        if (row == 1)
            cell.detailTextLabel.text = @"What we value";
        if (row == 2)
            cell.detailTextLabel.text = @"What does Honor mean?";
        return cell;
    // Override to support conditional editing of the table view.
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the specified item to be editable.
        return YES;
    // Override to support editing the table view.
    - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
        if (editingStyle == UITableViewCellEditingStyleDelete) {
            // Delete the row from the data source
            [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
        else if (editingStyle == UITableViewCellEditingStyleInsert) {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    // Override to support rearranging the table view.
    - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
    // Override to support conditional rearranging of the table view.
    - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the item to be re-orderable.
        return YES;
    #pragma mark - Table view delegate
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
         videoURLController *detailViewController = [[videoURLController alloc] initWithNibName:@"videoTableViewController" bundle:nil];
        UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
        if (indexPath.row == 0){
            [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
         // Pass the selected object to the new view controller.
         [self.navigationController pushViewController:detailViewController animated:YES];
    @end
    Here is my videoURLController (second view/web view) .h file?
    #import <UIKit/UIKit.h>
    @interface videoURLController : UIViewController
    @property (strong, nonatomic) IBOutlet UIWebView *webView;
    @end
    Here is my videoURLController (second view/web view) .m file?
    #import "videoURLController.h"
    @interface videoURLController ()
    @end
    @implementation videoURLController
    @synthesize webView;
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        [super viewDidLoad];
      // Do any additional setup after loading the view.
    - (void)viewDidUnload
        [super viewDidUnload];
        // Release any retained subviews of the main view.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    @end

  • SIGABRT error - PLEASE HELP - NEEDED URGENTLY

    Hello guys pls hep me out, i am new to ios sdk
    i am getting a sigabrt error
    This is how my app goes:
    $ A story board app
    $ 1 view controller embedded in a navigation controller
    $ 1 TableViewController And 1 more UIViewController
    $ When a user clicks button in the first viewcontroller he is pushed to the table view controller
    $ 3 Class files (h and m)
    $ 1 class file is an object
    $2nd class file is table view controller
    $ 3rd is UIVIewController
    now the problem is that when i click the button in the first viewcontoller i get a sigbrt error telling me that the cell text labeling is wrong and that sigabrt error with a green highlight stays on the code..
    I HAVE HIGHLIGHTED THE CODES THAT SHOWS SIGABRT ERROR
    My codes:
    URL.h
    #import <Foundation/Foundation.h>
    @interface url : NSObject
    @property (nonatomic, strong) NSString *urlstring;
    @property (nonatomic, strong) NSString *ns;
    @end
    url.m:
    #import "url.h"
    @implementation url
    @synthesize urlstring, ns;
    @end
    load.h;
    #import <UIKit/UIKit.h>
    #import "url.h"
    @interface load : UIViewController
    @property (strong, nonatomic) IBOutlet UIWebView *webview;
    @property (strong, nonatomic) url *currenturl;
    @property (strong, nonatomic) NSString *path;
    @property (strong, nonatomic) NSString *finalpath;
    @property (strong, nonatomic) NSString *value;
    @end
    load.m:
    #import "load.h"
    @interface load ()
    @end
    @implementation load
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        NSURL *ul = [NSURL URLWithString:[_currenturl urlstring]];
        [self.webview loadRequest:[NSURLRequest requestWithURL:ul]];
        [super viewDidLoad];
        // Do any additional setup after loading the view.
    - (void)didReceiveMemoryWarning
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    @end
    wwp.h ( wizards of waverly place i am trying to create an app that shows all the episodes)
    #import <UIKit/UIKit.h>
    #import "url.h"
    #import "load.h"
    @interface wwp : UITableViewController <UITableViewDelegate, UITableViewDataSource>
    @property (nonatomic, strong) NSDictionary *seasons;
    @property (nonatomic, strong) NSArray *keyseasons;
    @property (strong, nonatomic) NSString *path;
    @property (strong, nonatomic) NSString *finalpath;
    @property (strong, nonatomic) NSString *value;
    @end
    wwp.m
    #import "wwp.h"
    #import "url.h"
    @interface wwp ()
    @end
    @implementation wwp
    @synthesize seasons, keyseasons;
    NSMutableArray *urls;
    -(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
        if ([segue.identifier isEqualToString:@"showurl"]) {
            load *dvc = [segue destinationViewController];
            NSIndexPath *path = [self.tableView indexPathForSelectedRow];
            url * c = [urls objectAtIndex:path.row];
            [dvc setCurrenturl:c];
    - (id)initWithStyle:(UITableViewStyle)style
        self = [super initWithStyle:style];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        [super viewDidLoad];
        urls = [[NSMutableArray alloc] init];
        url *link = [[url alloc] init];
        [link setUrlstring:@"E1 Crazy Ten Minute Sale"];
        [link setNs:@"E1 Crazy Ten Minute Sale"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E2 First Kiss"];
        [link setNs:@"E2 First Kiss"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E3 I Almost Drowned in a Chocolate Fountain"];
        [link setNs:@"E3 I Almost Drowned in a Chocolate Fountain"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E4 New Employee"];
        [link setNs:@"E4 New Employee"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E5 Disenchanted Evening"];
        [link setNs:@"E5 Disenchanted Evening"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E6 You Can't Always Get What You Carpet"];
        [link setNs:@"E6 You Can't Always Get What You Carpet"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E7 Alex's Choice"];
        [link setNs:@"E7 Alex's Choice"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E8 Curb Your Dragon"];
        [link setNs:@"E8 Curb Your Dragon"];
        [urls addObject:link];
        NSString *myfile = [[NSBundle mainBundle] pathForResource:@"SeasonWowp" ofType:@"plist"];
        seasons = [[NSDictionary alloc] initWithContentsOfFile:myfile];
        keyseasons = [seasons allKeys];
        // Uncomment the following line to preserve selection between presentations.
        // self.clearsSelectionOnViewWillAppear = NO;
        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem;
    - (void)didReceiveMemoryWarning
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    #pragma mark - Table view data source
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
        // Return the number of sections.
        return 1;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        // Return the number of rows in the section.
        return [seasons count];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        static NSString *CellIdentifier = @"cell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (nil == cell) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        url *current = [urls objectAtIndex:indexPath.row];
        [cell.textLabel setText:[current ns]];
        return cell;
    // Override to support conditional editing of the table view.
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the specified item to be editable.
        return YES;
    // Override to support editing the table view.
    - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
        if (editingStyle == UITableViewCellEditingStyleDelete) {
            // Delete the row from the data source
            [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
        else if (editingStyle == UITableViewCellEditingStyleInsert) {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    // Override to support rearranging the table view.
    - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
    // Override to support conditional rearranging of the table view.
    - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the item to be re-orderable.
        return YES;
    #pragma mark - Table view delegate
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Navigation logic may go here. Create and push another view controller.
         <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
         // Pass the selected object to the new view controller.
         [self.navigationController pushViewController:detailViewController animated:YES];
    @end

    Sorry my mistake,
    i didnt intend to highlight it all... happened by mistake... before publishing the post i had the actuall thing highlighted and now its not any ways this the code that shows the error: ( the one which is Bolded,Italiced ,Underlined)
    wwp:
    #import "wwp.h"
    #import "url.h"
    @interface wwp ()
    @end
    @implementation wwp
    @synthesize seasons, keyseasons;
    NSMutableArray *urls;
    -(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
        if ([segue.identifier isEqualToString:@"showurl"]) {
            load *dvc = [segue destinationViewController];
            NSIndexPath *path = [self.tableView indexPathForSelectedRow];
            url * c = [urls objectAtIndex:path.row];
            [dvc setCurrenturl:c];
    - (id)initWithStyle:(UITableViewStyle)style
        self = [super initWithStyle:style];
        if (self) {
            // Custom initialization
        return self;
    - (void)viewDidLoad
        [super viewDidLoad];
        urls = [[NSMutableArray alloc] init];
        url *link = [[url alloc] init];
        [link setUrlstring:@"E1 Crazy Ten Minute Sale"];
        [link setNs:@"E1 Crazy Ten Minute Sale"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E2 First Kiss"];
        [link setNs:@"E2 First Kiss"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E3 I Almost Drowned in a Chocolate Fountain"];
        [link setNs:@"E3 I Almost Drowned in a Chocolate Fountain"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E4 New Employee"];
        [link setNs:@"E4 New Employee"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E5 Disenchanted Evening"];
        [link setNs:@"E5 Disenchanted Evening"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E6 You Can't Always Get What You Carpet"];
        [link setNs:@"E6 You Can't Always Get What You Carpet"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E7 Alex's Choice"];
        [link setNs:@"E7 Alex's Choice"];
        [urls addObject:link];
        link = [[url alloc] init];
        [link setUrlstring:@"E8 Curb Your Dragon"];
        [link setNs:@"E8 Curb Your Dragon"];
        [urls addObject:link];
        NSString *myfile = [[NSBundle mainBundle] pathForResource:@"SeasonWowp" ofType:@"plist"];
        seasons = [[NSDictionary alloc] initWithContentsOfFile:myfile];
        keyseasons = [seasons allKeys];
        // Uncomment the following line to preserve selection between presentations.
        // self.clearsSelectionOnViewWillAppear = NO;
        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem;
    - (void)didReceiveMemoryWarning
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    #pragma mark - Table view data source
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
        // Return the number of sections.
        return 1;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        // Return the number of rows in the section.
        return [seasons count];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        static NSString *CellIdentifier = @"cell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (nil == cell) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        url *current = [urls objectAtIndex:indexPath.row];
        [cell.textLabel setText:[current ns]];
        return cell;
    // Override to support conditional editing of the table view.
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the specified item to be editable.
        return YES;
    // Override to support editing the table view.
    - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
        if (editingStyle == UITableViewCellEditingStyleDelete) {
            // Delete the row from the data source
            [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
        else if (editingStyle == UITableViewCellEditingStyleInsert) {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    // Override to support rearranging the table view.
    - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
    // Override to support conditional rearranging of the table view.
    - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
        // Return NO if you do not want the item to be re-orderable.
        return YES;
    #pragma mark - Table view delegate
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Navigation logic may go here. Create and push another view controller.
         <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
         // Pass the selected object to the new view controller.
         [self.navigationController pushViewController:detailViewController animated:YES];
    @end

  • How do I fix a SIGABRT error in Xcode 4 ?

    I keep getting this error in Xcode 4 when I run the app:

    You stop the error from happening by fixing the error in your code that is causing the sigabrt.
    Without a lot more information there is no other way to answer your question.

  • How to solve the SIGABRT error in Xcode 3 ?

    I've built an iOS app and SIGABRT makes it crash . The app uses accelerator . I use the latest version of Xcode 3 (3.2.6) . How to sovle the problem ?

    How to solve this ?
    #import <UIKit/UIKit.h>
    int main(int argc, char *argv[]) {
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
       -> int retVal = UIApplicationMain(argc, argv, nil, nil);
        [pool release];
        return retVal;

  • Xcode SIGABRT error??

    Hello,
    I was in the storyboard backing buttons that connect to different view controllers, and when I ran it in the simulator and pressed on the button, It gave me an error with SIGABRT. How do I fix this?

    Your app is using auto layout, which was introduced in iOS 6. Your iPhone is running iOS 5, which doesn't support auto layout. That's why the code works on your iPad, but not your iPhone.
    If you want your app to work on both devices you have to turn off layout and set your app's deployment target to iOS 5. To turn off auto layout, select your xib file from the project navigator. Open the file inspector by choosing View > Utilities > Show File Inspector. Deselect the Use Auto Layout checkbox.
    To change the deployment target, select your project from the project navigator to open the project editor. Select your project from the left side of the project editor. Click the Info button at the top of the editor. Choose iOS 5.0 from the iOS Deployment Target combo box.

  • SIGABRT error in xCode 4.5.2

    Hello everybody, I´m just learning IOS Programming and I´ve had a problem when i Run the apps on my iPad (6.0) and mi iPhone (5.0.1) and also in the Simulator, when I run some apps in certain devices the screen is block in the Default image and i get this line in green:
    return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); Thread 1:signal SIGABRT
    I´m getting mad trying to solve this, help would be appreciated. In the debugger this time i have this:
    2012-11-18 13:59:50.430 Quiz[82846:707] *** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Could not instantiate class named NSLayoutConstraint'
    *** First throw call stack:
    (0x33efa8bf 0x3414a1e5 0x33efa7b9 0x33efa7db 0x375863a1 0x3758650f 0x37586277 0x375173fd 0x374879cb 0x37366ea1 0x372dc78b 0x372daf9d 0x372cd941 0x3733f541 0x23b1 0x372db7eb 0x372d53bd 0x372a3921 0x372a33bf 0x372a2d2d 0x306d5df3 0x33ece553 0x33ece4f5 0x33ecd343 0x33e504dd 0x33e503a5 0x372d4457 0x372d1743 0x210f 0x20b0)
    terminate called throwing an exception(lldb)
    Thanks for your help.

    Your app is using auto layout, which was introduced in iOS 6. Your iPhone is running iOS 5, which doesn't support auto layout. That's why the code works on your iPad, but not your iPhone.
    If you want your app to work on both devices you have to turn off layout and set your app's deployment target to iOS 5. To turn off auto layout, select your xib file from the project navigator. Open the file inspector by choosing View > Utilities > Show File Inspector. Deselect the Use Auto Layout checkbox.
    To change the deployment target, select your project from the project navigator to open the project editor. Select your project from the left side of the project editor. Click the Info button at the top of the editor. Choose iOS 5.0 from the iOS Deployment Target combo box.

  • Error xcode

    This gives this error when you click Create a new xcode project.
    What do I do?
    Process:    
    Xcode [727]
    Path:            /Applications/Xcode.app/Contents/MacOS/Xcode
    Identifier:      com.apple.dt.Xcode
    Version:    
    4.4.1 (1488)
    Build Info:      IDEApplication-1488000000000000~2
    App Item ID:
    497799835
    App External ID: 9950605
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [245]
    User ID:    
    501
    Date/Time:  
    2012-08-12 01:33:23.326 -0300
    OS Version:      Mac OS X 10.8 (12A128p)
    Report Version:  9
    Interval Since Last Report:          55456 sec
    Crashes Since Last Report:      
    11
    Per-App Interval Since Last Report:  1696 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      67B52054-2AB5-40B6-BC5A-8E22D0FC4B56
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    ProductBuildVersion: 4F1003
    UNCAUGHT EXCEPTION (NSInvalidArgumentException): +[NSImage imageWithSize:flipped:drawingHandler:]: unrecognized selector sent to class 0x7fff71de3630
    UserInfo: (null)
    Hints: None
    Backtrace:
       0  0x00007fff8baeceee __exceptionPreprocess (in CoreFoundation)
       1  0x00007fff8a86379a objc_exception_throw (in libobjc.A.dylib)
       2  0x00007fff8bb8610a +[NSObject(NSObject) doesNotRecognizeSelector:] (in CoreFoundation)
       3  0x00007fff8badb56e ___forwarding___ (in CoreFoundation)
       4  0x00007fff8badb358 _CF_forwarding_prep_0 (in CoreFoundation)
       5  0x0000000103cb8ffa __56-[DVTImagePopUpButtonCell drawInteriorWithFrame:inView:]_block_invoke_0 (in DVTKit)
       6  0x0000000103b7b004 -[DVTImagePopUpButtonCell drawInteriorWithFrame:inView:] (in DVTKit)
       7  0x00007fff81d32238 -[NSControl drawRect:] (in AppKit)
       8  0x00007fff81d00886 -[NSView _drawRect:clip:] (in AppKit)
       9  0x00007fff81d2bfc3 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] (in AppKit)
    10  0x00007fff81d2c3db -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] (in AppKit)
    11  0x00007fff81d6b94a -[NSToolbarItemViewer _recursiveDisplayAllDirtyWithLockFocus:visRect:] (in AppKit)
    12  0x00007fff81d2c3db -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] (in AppKit)
    13  0x00007fff81d2c3db -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] (in AppKit)
    14  0x00007fff81d2c3db -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] (in AppKit)
    15  0x00007fff81cfdcb4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] (in AppKit)
    16  0x00007fff81cfd25a -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] (in AppKit)
    17  0x00007fff81cf8900 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] (in AppKit)
    18  0x00007fff81cf1610 -[NSView displayIfNeeded] (in AppKit)
    19  0x00007fff81db06f4 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] (in AppKit)
    20  0x00007fff81dafed6 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] (in AppKit)
    21  0x00007fff81dafc7f -[NSWindow orderWindow:relativeTo:] (in AppKit)
    22  0x00007fff81daf47c -[NSWindow makeKeyAndOrderFront:] (in AppKit)
    23  0x00007fff8238bf4b __33-[NSWindowController showWindow:]_block_invoke_0 (in AppKit)
    24  0x00007fff86021ae2 -[QLSeamlessDocumentOpener showWindow:contentFrame:withBlock:] (in QuickLookUI)
    25  0x00007fff81eaa691 -[NSWindowController showWindow:] (in AppKit)
    26  0x00007fff81eaa4e3 -[NSDocument showWindows] (in AppKit)
    27  0x00007fff82091200 -[NSDocumentController(NSDeprecated) openDocumentWithContentsOfURL:display:error:] (in AppKit)
    28  0x000000010434ee08 -[IDEDocumentController _openProjectsAndWorkspaces:documents:simpleFileURLs:display:error:] (in IDEKit)
    29  0x00000001045b08a1 -[IDEDocumentController _openDocumentsForDocumentLocations:display:error:] (in IDEKit)
    30  0x000000010434ec14 -[IDEDocumentController openDocumentWithContentsOfURL:display:error:] (in IDEKit)
    31  0x000000010434ea9a -[IDEWelcomeWindowController openSelected:] (in IDEKit)
    32  0x00007fff82399ef4 -[NSObject(_NSBinderKeyValueCodingAdditions) _invokeSelector:withArguments:onKeyPath:] (in AppKit)
    33  0x00007fff82399dea -[NSObject(_NSBinderKeyValueCodingAdditions) _invokeSelector:withArguments:onKeyPath:] (in AppKit)
    34  0x00007fff81f8377f -[NSBinder _invokeSelector:withArguments:onKeyPath:ofObject:mode:raisesForNotApplicableKey s:] (in AppKit)
    35  0x00007fff81f83e4f -[NSBinder invokeSelector:withArguments:forBinding:error:] (in AppKit)
    36  0x00007fff81f4f709 -[NSActionBinder _invokeSelector:withArguments:forBinding:] (in AppKit)
    37  0x00007fff81f50033 -[NSActionBinder _performActionWithCommitEditing:didCommit:contextInfo:] (in AppKit)
    38  0x00007fff8239acfd -[_NSBindingAdaptor objectDidTriggerDoubleClickAction:] (in AppKit)
    39  0x00007fff81e1e5db -[NSTableView mouseDown:] (in AppKit)
    40  0x00007fff81d82c02 -[NSWindow sendEvent:] (in AppKit)
    41  0x00007fff81d18d47 -[NSApplication sendEvent:] (in AppKit)
    42  0x000000010434a2b4 -[IDEApplication sendEvent:] (in IDEKit)
    43  0x00007fff81cb634a -[NSApplication run] (in AppKit)
    44  0x00007fff81f2778b NSApplicationMain (in AppKit)
    45  0x000000010371adc0 (in Xcode)
    objc[727]: garbage collection is ON
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib    
    0x00007fff8c78a23a __pthread_kill + 10
    1   libsystem_c.dylib              0x00007fff851f7850 pthread_kill + 90
    2   libsystem_c.dylib              0x00007fff8524160e abort + 143
    3   com.apple.dt.IDEKit            0x00000001044d7685 +[IDEAssertionHandler _handleAssertionWithLogString:] + 506
    4   com.apple.dt.IDEKit            0x00000001044d8300 -[IDEAssertionHandler handleUncaughtException:] + 603
    5   com.apple.AppKit          
    0x00007fff81cb6412 -[NSApplication run] + 836
    6   com.apple.AppKit          
    0x00007fff81f2778b NSApplicationMain + 869
    7   com.apple.dt.Xcode        
    0x000000010371adc0 0x103719000 + 7616
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib    
    0x00007fff8c78ad2a kevent + 10
    1   libdispatch.dylib              0x00007fff8aafcf41 _dispatch_mgr_invoke + 883
    2   libdispatch.dylib              0x00007fff8aafcbce _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionloader
    0   libsystem_kernel.dylib    
    0x00007fff8c7886ae mach_msg_trap + 10
    1   libsystem_kernel.dylib    
    0x00007fff8c787c6a mach_msg + 70
    2   com.apple.CoreFoundation  
    0x00007fff8ba89503 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation  
    0x00007fff8ba8f650 __CFRunLoopRun + 1088
    4   com.apple.CoreFoundation  
    0x00007fff8ba8eeb9 CFRunLoopRunSpecific + 233
    5   com.apple.Foundation      
    0x00007fff85a907e6 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation      
    0x00007fff8597f568 __NSThread__main__ + 1345
    7   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    8   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib    
    0x00007fff8c78a34a __select + 10
    1   com.apple.CoreFoundation  
    0x00007fff8bace616 __CFSocketManager + 1302
    2   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    3   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib    
    0x00007fff8c7886ae mach_msg_trap + 10
    1   libsystem_kernel.dylib    
    0x00007fff8c787c6a mach_msg + 70
    2   com.apple.CoreFoundation  
    0x00007fff8ba89503 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation  
    0x00007fff8ba8f650 __CFRunLoopRun + 1088
    4   com.apple.CoreFoundation  
    0x00007fff8ba8eeb9 CFRunLoopRunSpecific + 233
    5   com.apple.DTDeviceKit          0x000000010a9c6ddf -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 298
    6   com.apple.Foundation      
    0x00007fff8597f568 __NSThread__main__ + 1345
    7   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    8   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib    
    0x00007fff8c78a6fe __workq_kernreturn + 10
    1   libsystem_c.dylib              0x00007fff851f8c48 _pthread_workq_return + 25
    2   libsystem_c.dylib              0x00007fff851f8a0f _pthread_wqthread + 412
    3   libsystem_c.dylib              0x00007fff851e3071 start_wqthread + 13
    Thread 6:: DYMobileDeviceManager
    0   libsystem_kernel.dylib    
    0x00007fff8c7886ae mach_msg_trap + 10
    1   libsystem_kernel.dylib    
    0x00007fff8c787c6a mach_msg + 70
    2   com.apple.CoreFoundation  
    0x00007fff8ba89503 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation  
    0x00007fff8ba8f650 __CFRunLoopRun + 1088
    4   com.apple.CoreFoundation  
    0x00007fff8ba8eeb9 CFRunLoopRunSpecific + 233
    5   com.apple.Foundation      
    0x00007fff859344ae -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation      
    0x00007fff8593438a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.Foundation      
    0x00007fff8597f568 __NSThread__main__ + 1345
    8   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    9   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib    
    0x00007fff8c78a6fe __workq_kernreturn + 10
    1   libsystem_c.dylib              0x00007fff851f8c48 _pthread_workq_return + 25
    2   libsystem_c.dylib              0x00007fff851f8a0f _pthread_wqthread + 412
    3   libsystem_c.dylib              0x00007fff851e3071 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib    
    0x00007fff8c78a6fe __workq_kernreturn + 10
    1   libsystem_c.dylib              0x00007fff851f8c48 _pthread_workq_return + 25
    2   libsystem_c.dylib              0x00007fff851f8a0f _pthread_wqthread + 412
    3   libsystem_c.dylib              0x00007fff851e3071 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib    
    0x00007fff8c78a6fe __workq_kernreturn + 10
    1   libsystem_c.dylib              0x00007fff851f8c48 _pthread_workq_return + 25
    2   libsystem_c.dylib              0x00007fff851f8a0f _pthread_wqthread + 412
    3   libsystem_c.dylib              0x00007fff851e3071 start_wqthread + 13
    Thread 10:: CVDisplayLink
    0   libsystem_kernel.dylib    
    0x00007fff8c78a122 __psynch_cvwait + 10
    1   libsystem_c.dylib              0x00007fff851fac0f _pthread_cond_wait + 884
    2   com.apple.CoreVideo            0x00007fff8610b0bb CVDisplayLink::waitUntil(unsigned long long) + 271
    3   com.apple.CoreVideo            0x00007fff8610a53a CVDisplayLink::runIOThread() + 516
    4   com.apple.CoreVideo            0x00007fff8610a31c startIOThread(void*) + 148
    5   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    6   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib    
    0x00007fff8c7886ae mach_msg_trap + 10
    1   libsystem_kernel.dylib    
    0x00007fff8c787c6a mach_msg + 70
    2   com.apple.CoreFoundation  
    0x00007fff8ba89503 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation  
    0x00007fff8ba8f650 __CFRunLoopRun + 1088
    4   com.apple.CoreFoundation  
    0x00007fff8ba8eeb9 CFRunLoopRunSpecific + 233
    5   com.apple.DebugSymbols    
    0x00007fff8a5d45fc SpotlightQueryThread(void*) + 356
    6   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    7   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib    
    0x00007fff8c78a3ae __semwait_signal + 10
    1   libsystem_c.dylib              0x00007fff85281a8c nanosleep + 163
    2   com.apple.CoreSymbolication    0x00007fff863bdeee cleaner_thread_main(void*) + 42
    3   libsystem_c.dylib              0x00007fff851f649e _pthread_start + 327
    4   libsystem_c.dylib              0x00007fff851e3081 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
       rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff63318a18  rdx: 0x0000000000000000
       rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff63318a40  rsp: 0x00007fff63318a18
        r8: 0x00007fff72391260   r9: 0x0000000000000000  r10: 0x0000000020000000  r11: 0xffffff8012accae0
       r12: 0x0000000400354960  r13: 0x00007fff74297590  r14: 0x00007fff72392160  r15: 0x00007fff63318b48
       rip: 0x00007fff8c78a23a  rfl: 0x0000000000000206  cr2: 0x00007fff7238aff0
    Logical CPU: 0
    Binary Images:
    0x103719000 -        0x10371bff7  com.apple.dt.Xcode (4.4.1 - 1488) <0C959675-2C28-3F49-B93B-FD10768DBF89> /Applications/Xcode.app/Contents/MacOS/Xcode
    0x103727000 -        0x103a43fff  com.apple.dt.DVTFoundation (4.4.1 - 1534) <90576AD2-0EE7-30A7-9C76-B3D42B225701> /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versi ons/A/DVTFoundation
    0x103b49000 -        0x103da4ff7  com.apple.dt.DVTKit (4.4.1 - 1544) <C61176BB-0DA2-34EF-A3EC-D1E6FFD624D6> /Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/D VTKit
    0x103f02000 -        0x104183fff  com.apple.dt.IDEFoundation (4.4.1 - 1555) <A7894D04-A3F7-324D-AB09-EB932171AC55> /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/ IDEFoundation
    0x104333000 -        0x104804ff7  com.apple.dt.IDEKit (4.4.1 - 1572) <078EF0C5-3472-3457-BA64-C85C26CA4E27> /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit
    0x104b39000 -        0x104bd0ff7  com.apple.PackageKit (3 - 216) <B93EF6D0-56B9-336D-BA59-73035C2196D1> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x104c3b000 -        0x105254fff +libclang.dylib (??? - 421.0.60) <97C8C149-12B2-33EE-B714-FCF2C7302B01> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/lib/libclang.dylib
    0x1052b7000 -        0x1052bafff  com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) <B1DAADAE-38A6-3F15-8FA9-9510E71F12ED> /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framew ork/Versions/A/DVTDeveloperModeHelper
    0x1053c9000 -        0x1053c9fff +cl_kernels (??? - ???) <FC36672C-7BC5-4822-A851-B7C2A47E1F2D> cl_kernels
    0x1053f2000 -        0x1053f2ff9 +cl_kernels (??? - ???) <4F035F9B-2223-4F8F-BE7C-B7110F428C41> cl_kernels
    0x1053f6000 -        0x1053f8fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchEditingSupport (4.4.1 - 1498) <53F9088F-BDA9-338F-A2BF-DD2992213473> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchEditingSuppor t.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchEditingSupport
    0x1053fd000 -        0x1053ffff7  com.apple.dt.IDE.IDEAppleScriptEditor (4.4.1 - 1449) <E645ACF3-E353-393E-8304-024C13BB2133> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptEditor.ideplugin/Content s/MacOS/IDEAppleScriptEditor
    0x105411000 -        0x10541bff7  libcldcpuengine.dylib (??? - 2.0.10) <9951BB78-232C-317A-95B3-B2BAA17EE690> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x105421000 -        0x105424ff7  libCoreFSCache.dylib (??? - 21.1) <384478E3-8BD5-388C-A6C6-28DAC3315B62> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x10543f000 -        0x105440ffa +cl_kernels (??? - ???) <568E922E-1137-4FA6-96CF-A0FC2FE76012> cl_kernels
    0x1069d9000 -        0x1069f4fff  com.apple.DADocSetManagement (4.4.1 - 1461) <03A345AA-2D4D-3179-AF7C-E4BA313352AE> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetManagement.framework/ Versions/A/DADocSetManagement
    0x106a34000 -        0x106a3fff7  com.apple.dt.IDE.IDEProjectsOrganizer (4.4.1 - 1450) <D9CEED9B-46BE-3BDD-9A49-043BEB160002> /Applications/Xcode.app/Contents/PlugIns/IDEProjectsOrganizer.ideplugin/Content s/MacOS/IDEProjectsOrganizer
    0x106a4b000 -        0x106a4efff  com.apple.dt.gpu.GPUTraceDebugger (4.4.1 - 65.7) <B2F5005D-1ED5-33D5-A527-2134ACD2C231> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/Ma cOS/GPUTraceDebugger
    0x106a55000 -        0x106d5ffff  com.apple.dt.IDE.IDEInterfaceBuilderKit (4.4.1 - 2549) <EFD09EC9-23BC-377E-826E-14C302E59836> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderKit.ideplugin/Conte nts/MacOS/IDEInterfaceBuilderKit
    0x106f73000 -        0x106fdffff  com.apple.dt.IBAutolayoutFoundation (1.0 - 1) <C9335C11-4A48-30EE-BD18-FB810D6DB858> /Applications/Xcode.app/Contents/Frameworks/IBAutolayoutFoundation.framework/Ve rsions/A/IBAutolayoutFoundation
    0x107072000 -        0x1070c9ff7  com.apple.dt.IDE.IDEFindReplace (4.4.1 - 1516) <0444143B-F86E-3B7D-9ADF-8EE0A8DAE66D> /Applications/Xcode.app/Contents/PlugIns/IDEFindReplace.ideplugin/Contents/MacO S/IDEFindReplace
    0x107108000 -        0x107154ff7  com.apple.DADocSetAccess (4.4.1 - 1454) <424DC3CD-04B0-3774-B634-C57281C341EA> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetAccess.framework/Vers ions/A/DADocSetAccess
    0x107181000 -        0x1071cdff7  com.apple.dt.IDE.IDEDocViewer (4.4.1 - 1480) <3D7C9C2F-9B49-3D4E-921C-EB8740D58970> /Applications/Xcode.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/ IDEDocViewer
    0x10720c000 -        0x107230ff7  com.apple.dt.dbg.DebuggerFoundation (4.4.1 - 1528) <75D2AB5F-2079-3E2D-8E08-F4F141180CC8> /Applications/Xcode.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/ MacOS/DebuggerFoundation
    0x107252000 -        0x1072b7fff  com.apple.dt.dbg.DebuggerUI (4.4.1 - 1528) <A5689680-926B-3DD1-AF4D-573FCA4333A7> /Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/De buggerUI
    0x10730a000 -        0x107311ff7  com.apple.dt.IDE.HexEditor (4.4.1 - 1454) <F0706827-2432-378C-9AEF-EF9EA8337DB7> /Applications/Xcode.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/Hex Editor
    0x10731a000 -        0x107351fff +com.ridiculousfish.HexFiendFramework (4.4.1 - 1454) <43FE095D-0F17-32BF-989B-4CF6541FFFE4> /Applications/Xcode.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A /HexFiend
    0x107378000 -        0x10740efff  com.apple.dt.IDE.IDESourceEditor (4.4.1 - 1512) <FFD78A89-B377-39BD-9935-98840056AEBB> /Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/Mac OS/IDESourceEditor
    0x107471000 -        0x107486ff7  com.apple.dt.IDE.IDEQuickHelp (4.4.1 - 1489) <5B2689AE-A878-31DA-95FA-63B23220EC78> /Applications/Xcode.app/Contents/PlugIns/IDEQuickHelp.ideplugin/Contents/MacOS/ IDEQuickHelp
    0x10749c000 -        0x1074b5ff7  com.apple.dt.IDE.Xcode3Core (4.4.1 - 1559) <C9990123-0445-3302-8CD3-4F9C4803C6FA> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xc ode3Core
    0x1074c8000 -        0x107782fff  com.apple.Xcode.DevToolsCore (6.4.1 - 1559) <65BC9A1A-F0AD-3834-9BAB-8CC21A47077B> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsCore.framework/Versions/A/DevToolsCore
    0x1078ed000 -        0x1078f6fff  com.apple.DevToolsFoundation (6.4.1 - 1559) <3938D282-3116-3367-82A7-00C10F27DC64> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
    0x107901000 -        0x107937fff  com.apple.Xcode.DevToolsSupport (6.4.1 - 1559) <756182A1-E974-3795-AEE8-3D22668F5D9A> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsSupport.framework/Versions/A/DevToolsSupport
    0x1079da000 -        0x1079f2fff  com.apple.dt.IDE.SharedPlugInUtilities (4.4.1 - 1451) <FC52CE05-E0CC-384E-9910-2C825EE590C7> /Applications/Xcode.app/Contents/PlugIns/SharedPlugInUtilities.ideplugin/Conten ts/MacOS/SharedPlugInUtilities
    0x107a02000 -        0x107b0cfff  com.apple.dt.IDE.Xcode3UI (4.4.1 - 1559) <662C8C90-390D-33A8-AF3B-66E0BC0ED81A> /Applications/Xcode.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcod e3UI
    0x108924000 -        0x10892afff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0a22) <4CF7ED3A-28E1-3FF2-8DF6-940B4243309D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x10892f000 -        0x108939fff  com.apple.xcode.plug-in.CoreBuildTasks (6.4.1 - 1559) <61463D0A-FEFA-3DB1-AFE7-2DFA9E246D22> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/Co reBuildTasks
    0x108942000 -        0x108946fff  com.apple.platform.iphoneos.plugin (1.0 - 1.0) <C471F676-B6A6-32BE-9056-61CE3D291787> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/iPhoneOS Build System Support.xcplugin/Contents/MacOS/iPhoneOS Build System Support
    0x10894f000 -        0x108954ff7  libFontRegistryUI.dylib (??? - 87.2) <D015C839-A229-3540-A18A-1D2E23ABCA7A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x10a03e000 -        0x10a03fffb +cl_kernels (??? - ???) <5FAAD81A-12C8-4F30-BDA1-141F974EA1EC> cl_kernels
    0x10a827000 -        0x10a829ff7  com.apple.dt.dbg.DebuggerLLDBService (4.4.1 - 1528) <FD431B28-2DE7-334D-9474-FD57FFA1A8AD> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents /MacOS/DebuggerLLDBService
    0x10a82f000 -        0x10a831ff7  com.apple.dt.dbg.DebuggerGDBService (4.4.1 - 1528) <63C20E08-CA7A-38AE-ADB6-1DD1CD50475B> /Applications/Xcode.app/Contents/PlugIns/DebuggerGDBService.ideplugin/Contents/ MacOS/DebuggerGDBService
    0x10a837000 -        0x10a8e2ff7  com.apple.dt.IDE.IDEiPhoneSupport (4.4.1 - 1512) <40468F08-305F-3BF7-A6B2-AC8A1EAD9EDE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPho neSupport
    0x10a933000 -        0x10a95ffff  com.apple.framework.ConfigurationProfiles (5.0 - 511) <7686C958-FCF3-3F54-AB02-B2C33731DB14> /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/Co nfigurationProfiles
    0x10a977000 -        0x10a9a1fff  com.apple.DTDeviceKitBase (4.4.1 - 1502) <10098C81-96AA-398F-9A0B-A98637538EDE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/DTDeviceKitBase.framework/Versions/A/DTDeviceKitBase
    0x10a9be000 -        0x10aa3bff7  com.apple.DTDeviceKit (4.2 - 1502) <084A6D4D-9A50-3142-BC17-FBD04E631611> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/DTDeviceKit
    0x10aa91000 -        0x10aaa9fff  com.apple.DeviceLinkX (5.0 - 256) <BD4569ED-733F-3E7B-AA57-10281B4ABB45> /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink
    0x10aab9000 -        0x10ab48ff7  com.apple.mobiledevice (507.4 - 507.4) <F2B70B4C-CF03-3881-9DF1-D01DB4C522D2> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
    0x10ab8b000 -        0x10aba9ff7  com.apple.dt.IDE.IDEArchivedApplicationsViewer (4.4.1 - 1471) <8B492A57-57A5-38F4-96CF-64252042FF8B> /Applications/Xcode.app/Contents/PlugIns/IDEArchivedApplicationsViewer.ideplugi n/Contents/MacOS/IDEArchivedApplicationsViewer
    0x10abc5000 -        0x10abcdff7  com.apple.DVTiPhoneSimulatorRemoteClient (4.4.1 - 1450) <111E83AF-B17D-3766-9C6F-66CB29E6669D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/PrivateFrameworks/DVTiPhoneSimulatorRemoteClient.framework/Vers ions/A/DVTiPhoneSimulatorRemoteClient
    0x10b660000 -        0x10b79efff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (4.4.1 - 2549) <E545F012-D077-3F08-8219-5784A7FAF967> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.id eplugin/Contents/MacOS/IDEInterfaceBuilderCocoaIntegration
    0x10b886000 -        0x10b8ceff7  com.apple.glut (3.5.1 - GLUT-3.5.1) <52549E9E-C589-3BD1-AC1F-63F9E574AC5D> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x10b942000 -        0x10b952fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoa (4.4.1 - 1460) <15A2F9E1-A401-36B7-9538-7FBA04AB5202> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoa.ideplugin/Con tents/MacOS/IDEInterfaceBuilderCocoa
    0x10b965000 -        0x10bd60fff  com.apple.SceneKit (3.0 - 135) <88D4D84C-5104-3509-97B6-BD7119F4F980> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
    0x10bf5e000 -        0x10bf8aff7  com.apple.DiscRecordingUI (7.0 - 7000.2.3) <BEA8F40D-09FF-3FB8-9593-43357C6FD968> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x10bfac000 -        0x10c111ff7  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (4.4.1 - 1498) <881706D5-6C56-3DCC-895B-24FF70ED04C2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchIntegration.i deplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchIntegration
    0x10c1b2000 -        0x10c1b4ff7  com.apple.dt.IDE.IDEInterfaceBuilderAutomator (4.4.1 - 1460) <2CB7805E-2BCC-3D2B-9340-1379AC239E2F> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderAutomator.ideplugin /Contents/MacOS/IDEInterfaceBuilderAutomator
    0x10c562000 -        0x10c588fff  libPDFRIP.A.dylib (??? - 250.0.5) <8F0DA4AA-12A7-3401-9EE0-10539007270F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x10c5e5000 -        0x10c751ff7  com.apple.audio.units.Components (1.8 - 1.8) <81C2C862-8B86-3EB3-BCBE-15E57EA7B57B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x10c7dc000 -        0x10c7e6fff  com.apple.GPUToolsInterface (1.0 - 1.8) <CCEC26FD-DC70-37F6-A1DF-371ED19925AA> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsInterface.framework/V ersions/A/GPUToolsInterface
    0x10c7f0000 -        0x10c7f5ff7  com.apple.dt.gpu.GPUDebuggeriOSSupport (4.4.1 - 2.1) <D102546B-597F-354D-A066-803D8C431A83> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/GPUDebuggeriOSSupport.ideplugin/Contents/MacOS/GP UDebuggeriOSSupport
    0x10f1fb000 -        0x10f22cff7  com.apple.dt.IDE.IDESceneKitEditor (4.4.1 - 1481) <002312EC-AB98-37E6-8A78-D1D0DEC244D0> /Applications/Xcode.app/Contents/PlugIns/IDESceneKitEditor.ideplugin/Contents/M acOS/IDESceneKitEditor
    0x10f25a000 -        0x10f32fff7  com.apple.dt.IDE.IDEModelEditor (4.4.1 - 1487) <8C994A62-2052-3B20-AAFB-C03B319A7A6D> /Applications/Xcode.app/Contents/PlugIns/IDEModelEditor.ideplugin/Contents/MacO S/IDEModelEditor
    0x10f3bf000 -        0x10f3ccff7  com.apple.dt.IDE.IDEIssueNavigator (4.4.1 - 1450) <FE7FB386-E748-35C8-BE4A-5D22ACFE8AD1> /Applications/Xcode.app/Contents/PlugIns/IDEIssueNavigator.ideplugin/Contents/M acOS/IDEIssueNavigator
    0x10f3d7000 -        0x10f3e2fff  com.apple.dt.gpu.GPUDebuggerKit (4.4.1 - 65.7) <E902E14C-F95A-35F8-A176-0AD56FC8D951> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacO S/GPUDebuggerKit
    0x10f3f3000 -        0x10f407ff7  com.apple.dt.IDE.IDERTFEditor (4.4.1 - 1451) <1C269E10-FEAF-379D-A774-9E439756F7A4> /Applications/Xcode.app/Contents/PlugIns/IDERTFEditor.ideplugin/Contents/MacOS/ IDERTFEditor
    0x10f419000 -        0x10f422ff7  com.apple.dt.PlistEditor (4.4.1 - 1451) <CFBBBFDE-D54F-33CD-994F-050868C46D91> /Applications/Xcode.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/P listEditor
    0x10f460000 -        0x10f4c7ff7  com.apple.dt.IDE.IDEModelFoundation (4.4.1 - 1487) <DEDD9004-0BDA-38F7-9F61-F49791294AD9> /Applications/Xcode.app/Contents/PlugIns/IDEModelFoundation.ideplugin/Contents/ MacOS/IDEModelFoundation
    0x10f516000 -        0x10f54dff7  com.apple.dt.IDE.IDERepositoryViewer (4.4.1 - 1484) <1ED11FEC-D6BF-338B-B822-A79622B1B905> /Applications/Xcode.app/Contents/PlugIns/IDERepositoryViewer.ideplugin/Contents /MacOS/IDERepositoryViewer
    0x10f57c000 -        0x10f5eefff  com.apple.dt.gpu.GPUDebuggerFoundation (4.4.1 - 65.7) <0B04B53F-E387-31BF-AD19-1B25AE257001> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Conten ts/MacOS/GPUDebuggerFoundation
    0x10f62a000 -        0x10f69dff7  com.apple.GPUTools (1.0 - 93.15) <2A34B384-83DD-332F-9D27-58A75457E9AA> /Applications/Xcode.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A /GPUTools
    0x10f6e8000 -        0x10f757ff7  com.apple.GPUToolsCore (1.0 - 93.15) <C6190FA9-BF43-3C77-AD41-87334629AC60> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versio ns/A/GPUToolsCore
    0x10f78d000 -        0x10f7fcff7  com.apple.GPUToolsAnalysis (1.0 - 1.8) <C952E847-5EEF-3E29-9DBB-ED6308006B3C> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsAnalysis.framework/Ve rsions/A/GPUToolsAnalysis
    0x10f836000 -        0x10f8adff7  com.apple.dt.gpu.GPUTraceDebuggerUI (4.4.1 - 65.7) <E8B779AE-F7D7-321E-BB6B-1138EF599463> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/ MacOS/GPUTraceDebuggerUI
    0x10f8de000 -        0x10f93fff7  com.apple.dt.gpu.GPURenderTargetEditor (4.4.1 - 65.7) <39EB3579-D7FD-329E-B2AE-BF1D1645C282> /Applications/Xcode.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Conten ts/MacOS/GPURenderTargetEditor
    0x10f986000 -        0x10f998fff  com.apple.dt.IDE.IDEStructureNavigator (4.4.1 - 1468) <44543D58-CDFC-3A68-AE0A-B424AD6A9232> /Applications/Xcode.app/Contents/PlugIns/IDEStructureNavigator.ideplugin/Conten ts/MacOS/IDEStructureNavigator
    0x10f9a6000 -        0x10f9abfff  com.apple.dt.IDE.IDEPDFViewer (4.4.1 - 1452) <8416B935-7E44-3AE2-B085-38C006B89D4F> /Applications/Xcode.app/Contents/PlugIns/IDEPDFViewer.ideplugin/Contents/MacOS/ IDEPDFViewer
    0x10f9b4000 -        0x10f9bcff7  com.apple.dt.ScriptingDefinitionEditor (4.4.1 - 1447) <7F0C3639-7979-3537-BC45-146D6C8C89B8> /Applications/Xcode.app/Contents/PlugIns/ScriptingDefinitionEditor.ideplugin/Co ntents/MacOS/ScriptingDefinitionEditor
    0x10f9c4000 -        0x10f9d2fff  com.apple.dt.IDE.IDEQuickLookEditor (4.4.1 - 1455) <233B57DF-BCEB-3237-BEF0-83BA8D20B690> /Applications/Xcode.app/Contents/PlugIns/IDEQuickLookEditor.ideplugin/Contents/ MacOS/IDEQuickLookEditor
    0x10f9e3000 -        0x10fa14fff  com.apple.dt.IDE.IDELogNavigator (4.4.1 - 1474) <191C431B-7ADE-34E2-94BA-54CBFC455EE6> /Applications/Xcode.app/Contents/PlugIns/IDELogNavigator.ideplugin/Contents/Mac OS/IDELogNavigator
    0x10fa3a000 -        0x10fa50fff  com.apple.dt.IDE.IDESymbolNavigator (4.4.1 - 1461) <F068ADDE-BF2A-389E-8111-28394E287A45> /Applications/Xcode.app/Contents/PlugIns/IDESymbolNavigator.ideplugin/Contents/ MacOS/IDESymbolNavigator
    0x10fa63000 -        0x10fa72fff  com.apple.GPUToolsMobileFoundation (1.0 - 2.9.1) <CEF15410-2FB5-3ABB-AC2E-5AEE37959E8C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/GPUToolsMobileFoundation.framework/Versions/A/GPUToo lsMobileFoundation
    0x10fbc9000 -        0x10fc67ff7  unorm8_bgra.dylib (??? - 2.0.10) <197BB338-2274-3250-93E3-9B48D4C24CEB> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x1113f8000 -        0x1115a7fff  GLEngine (??? - 8.1.4) <E59E478D-D71D-3AD2-923D-0E84E5A995DF> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1115de000 -        0x111720ff7  libGLProgrammability.dylib (??? - 8.1.4) <4115D8FC-C7AA-323C-85BD-A156B36515D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x111754000 -        0x111762fff  libGPUSupport.dylib (??? - 8.1.4) <D3C08D6C-B92C-33BB-8BFD-247526F09C0F> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x111770000 -        0x11179dff7  GLRendererFloat (??? - 8.1.4) <A6253422-70A7-3B26-8D57-820F131ED55A> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x112336000 -        0x112337ffb +cl_kernels (??? - ???) <99156898-D774-41A8-A09A-30ACEA76DC9D> cl_kernels
    0x200000000 -        0x2007f1ff7  com.apple.GeForceGLDriver (8.0.7 - 8.0.0) <E14409F5-1F5F-3174-A4A0-FFA138066A04> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
         0x7fff63319000 -
    0x7fff6334d597  dyld (??? - 206) <13342B9C-68E1-32D8-95C4-66B1C5A93C46> /usr/lib/dyld
         0x7fff81c6d000 -
    0x7fff81c94ff7  com.apple.framework.familycontrols (4.0 - 400) <44DB026C-7F71-3AAA-AB17-C181489F7462> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
         0x7fff81cb1000 -
    0x7fff82893ff7  com.apple.AppKit (6.8 - 1157.7) <0375880F-31B2-387A-9561-ED7649848479> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
         0x7fff82894000 -
    0x7fff82924ff7  com.apple.CorePDF (2.0 - 2) <7DC5F61D-98EC-3EB3-88E7-34D6E4648988> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
         0x7fff82925000 -
    0x7fff8293ffff  com.apple.ScriptingBridge (1.3 - ???) <FC0B32A6-B836-3E84-A969-7693BB160BF0> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
         0x7fff82940000 -
    0x7fff8295cfff  com.apple.openscripting (1.3.4 - ???) <CC89D405-F62B-3241-9D08-9FF10CFC39C3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
         0x7fff8295d000 -
    0x7fff829a7fff  libGLU.dylib (??? - 8.1.4) <DCF16CDF-DCCD-3D84-AD81-8296040D4DA0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
         0x7fff829a8000 -
    0x7fff829ffff7  com.apple.ScalableUserInterface (1.0 - 1) <72928EDE-8F4C-3FFF-98D7-CA68E8913930> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
         0x7fff82a00000 -
    0x7fff838c4fff  com.apple.WebCore (8535 - 8535.18.5) <3BE655A1-79E1-3D0E-BAFA-71CFADBB29FA> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
         0x7fff838c5000 -
    0x7fff83b20ff7  com.apple.QuartzComposer (5.1 - 259) <BE681592-ADD5-34A5-BBF3-57432B8B064C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
         0x7fff83b21000 -
    0x7fff83b21fff  com.apple.CoreServices (57 - 57) <62EDA6EE-0116-356E-997B-05A80D74A8B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
         0x7fff83b22000 -
    0x7fff83b5afff  libncurses.5.4.dylib (??? - 37) <97E5612F-A5A7-3E21-A955-19E6BD20C4E3> /usr/lib/libncurses.5.4.dylib
         0x7fff83baf000 -
    0x7fff83bb6fff  com.apple.NetFS (4.0 - 4.0) <B1F37047-3FAE-3479-82E4-AAE25CBD4C50> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
         0x7fff83bb7000 -
    0x7fff83c0cff7  libTIFF.dylib (??? - 818) <64BF7139-051B-34DD-BD47-0A63BE4EAAA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
         0x7fff83c0d000 -
    0x7fff83c1afff  com.apple.AppleFSCompression (46 - 1.0) <DF68BD9A-3306-3498-ACA5-A5DEA7494865> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
         0x7fff83c1b000 -
    0x7fff83c22ff7  com.apple.marco (7.0 - 900) <633BD6B1-75E3-3F21-8B6E-65031C8AE2DB> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
         0x7fff83c23000 -
    0x7fff83ceeff7  com.apple.Bluetooth (4.0.7 - 4.0.7b17) <75570D49-78AB-3F86-86C7-A354985A1010> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
         0x7fff83d1f000 -
    0x7fff83d88fff  libstdc++.6.dylib (??? - 56) <3D7DCC84-1F8B-32D0-9B48-49A54B6ED305> /usr/lib/libstdc++.6.dylib
         0x7fff83d89000 -
    0x7fff83d8cfff  com.apple.AppleSystemInfo (2.0 - 2) <A9604AC8-608A-33A3-9F00-5959B66196AA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
         0x7fff83e35000 -
    0x7fff83ee3ff7  com.apple.LaunchServices (499.1 - 499.1) <79B108DF-5610-35AA-9417-102150E05ADC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
         0x7fff83ee4000 -
    0x7fff83ee5fff  libffi.dylib (??? - 1) <D0EF0105-7F16-3A28-B377-A481DF904063> /usr/lib/libffi.dylib
         0x7fff83f1e000 -
    0x7fff83fdbff7  com.apple.ColorSync (4.8.0 - 4.8.0) <E9B176B6-59CA-3099-807E-64B29B846692> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
         0x7fff83fdc000 -
    0x7fff83fe1fff  libcompiler_rt.dylib (??? - 30) <37E0C1B2-2DAD-3B1E-800D-8EDF31C41CC8> /usr/lib/system/libcompiler_rt.dylib
         0x7fff83fe2000 -
    0x7fff8400fff7  com.apple.CoreServicesInternal (133 - 133) <AAC89FBC-CA74-3AEA-9187-367E5CCE1FFE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
         0x7fff84010000 -
    0x7fff84011ff7  libSystem.B.dylib (??? - 169) <9B685BAB-23A0-38A8-B9F2-4DEA020584EE> /usr/lib/libSystem.B.dylib
         0x7fff84012000 -
    0x7fff8403dff7  com.apple.framework.Apple80211 (8.0 - 800.4) <967C04D9-2B13-35A8-B1DE-538333C27B8C> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
         0x7fff8408f000 -
    0x7fff84096ff7  com.apple.CommerceCore (1.0 - 19) <99B2A6D3-ED2A-3BE9-8683-8F205A01EE19> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
         0x7fff840ea000 -
    0x7fff84146fff  com.apple.Symbolication (1.3 - 91) <3D5A3B4E-FEB1-33A7-98D7-8117011F244D> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
         0x7fff84147000 -
    0x7fff8422cff7  com.apple.backup.framework (1.4 - 1.4) <C6B07BA2-33DE-3794-8255-F9C67EFB4FAC> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
         0x7fff8422d000 -
    0x7fff8424cfff  libCRFSuite.dylib (??? - 30) <34D5474C-974D-33B8-9E15-08599E113F02> /usr/lib/libCRFSuite.dylib
         0x7fff8424d000 -
    0x7fff8424dfff  com.apple.ApplicationServices (44 - 44) <61E15AC1-DE4F-363C-A3AF-1EB31CDA9B43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
         0x7fff8424e000 -
    0x7fff842a9fff  com.apple.QuickLookFramework (4.0 - 521.1) <CB846605-AC07-3984-AC21-52049F1263BA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
         0x7fff842ad000 -
    0x7fff842f4ff7  com.apple.OSAKit (1.3 - 81) <8CC901F5-3BD7-3F24-82F6-0F2A0B0CBED1> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
         0x7fff842f5000 -
    0x7fff8435cfff  libcommonCrypto.dylib (??? - 60007) <30A7BE27-F3AF-3AFB-B4F8-B40EB2D51104> /usr/lib/system/libcommonCrypto.dylib
         0x7fff845d2000 -
    0x7fff845d4ff7  libunc.dylib (??? - 24) <A640329D-21FD-33C5-BA97-1696E28AD615> /usr/lib/system/libunc.dylib
         0x7fff845d5000 -
    0x7fff84654ff7  com.apple.Metadata (10.7.0 - 656.2) <2FF6218D-6A92-3556-9214-841FF4D9B20F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
         0x7fff84655000 -
    0x7fff84656fff  liblangid.dylib (??? - 113) <8A316E3C-198E-35CF-A1D3-FD170AFB9034> /usr/lib/liblangid.dylib
         0x7fff84657000 -
    0x7fff846adfff  com.apple.ImageCaptureCore (4.0 - 4.0) <D3EEA6C5-A70A-3DA5-95CD-8B8FCAFFE2D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
         0x7fff846ae000 -
    0x7fff849d3fff  com.apple.HIToolbox (2.0 - ???) <3D80567F-1DFC-3346-AED2-A4BE0B8B4E57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
         0x7fff849da000 -
    0x7fff84a5cfff  com.apple.Heimdal (3.0 - 2.0) <BE5C2C54-B7E3-3AB8-A889-2775DFE01E93> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
         0x7fff84a5d000 -
    0x7fff84a5ffff  com.apple.securityhi (4.0 - 55002) <07453725-9392-3DCE-90FB-8EC68FFBD615> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
         0x7fff84b2c000 -
    0x7fff84d47fff  com.apple.CoreData (105 - 395) <7FDFE2D2-52A9-312A-922E-6A4B802ED13A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
         0x7fff84d48000 -
    0x7fff85061fff  com.apple.CoreServices.CarbonCore (1015 - 1015) <FAC21628-88E8-3DB5-91A6-393631323CB7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
         0x7fff85062000 -
    0x7fff851e1ff7  com.apple.WebKit (8535 - 8535.18.5) <C4418E33-1D3E-37FF-883C-675D1B669CC7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
         0x7fff851e2000 -
    0x7fff852afff7  libsystem_c.dylib (??? - 824.3) <0A254F87-0DDA-3C6E-93FF-848E97192AFB> /usr/lib/system/libsystem_c.dylib
         0x7fff85477000 -
    0x7fff8556cfff  libiconv.2.dylib (??? - 7) <22736181-36E2-388D-8370-79CCD13FEA2C> /usr/lib/libiconv.2.dylib
         0x7fff8556f000 -
    0x7fff85573ff7  com.apple.CommonPanels (1.2.5 - 94) <F8D43F81-5CB2-33AF-91FE-68909D24187E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
         0x7fff85574000 -
    0x7fff85596ff7  com.apple.Kerberos (2.0 - 1) <C4A043DE-3ACA-31D5-BE66-DD4833D72BFF> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
         0x7fff85597000 -
    0x7fff855b5fff  com.apple.ChunkingLibrary (1.0 - 127) <0BDE3C15-CDCA-39E9-A7FC-0FA4D3889FD9> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
         0x7fff855b6000 -
    0x7fff855c3ff7  com.apple.HelpData (2.1.2 - 74) <2354B671-C6A1-37D1-B40E-5DD7231E6254> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
         0x7fff85628000 -
    0x7fff8562dfff  com.apple.OpenDirectory (10.8 - 151.1) <366D13D6-DA25-306D-AF9C-ECF88C0ABF92> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
         0x7fff8562e000 -
    0x7fff8562ffff  com.apple.ServerInformation (1.1 - 1) <1A8F25A7-63FA-3225-9F89-EAFDD0AF5B60> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
         0x7fff85630000 -
    0x7fff8565efff  com.apple.shortcut (2.1 - 2.1) <388E8DE9-C187-3411-A7E2-0538FF0C2E0A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
         0x7fff8565f000 -
    0x7fff8566cfff  libexslt.0.dylib (??? - 11.1) <10A62E23-BD43-336A-9E4D-FFC2A1152AD1> /usr/lib/libexslt.0.dylib
         0x7fff8566d000 -
    0x7fff85672fff  libcache.dylib (??? - 49) <09CA86F2-DA23-3F86-91C7-CDFCA20F58C4> /usr/lib/system/libcache.dylib
         0x7fff85673000 -
    0x7fff85689fff  com.apple.ImageCapture (8.0 - 8.0) <42702BCA-1291-372F-A95A-FBAF1A947B0E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
         0x7fff8568f000 -
    0x7fff856bffff  com.apple.RemoteViewServices (2.0 - 55) <82C4C1AA-11DF-344E-AF22-DBA6DA3A6AFF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
         0x7fff856c0000 -
    0x7fff856c6fff  com.apple.phonenumbers (1.0 - 47) <E8B6C2E7-3B47-37C4-A321-AE1989FD8FFC> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
         0x7fff856c7000 -
    0x7fff856d6ff7  libxar.1.dylib (??? - 104) <73CE1A19-521F-3A5E-8EDA-1BDEFF7AE264> /usr/lib/libxar.1.dylib
         0x7fff856d7000 -
    0x7fff85725ff7  libFontRegistry.dylib (??? - 87.2) <687BC0CD-41F7-3343-8CD1-25BFDFA05F0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
         0x7fff85726000 -
    0x7fff857d1fff  com.apple.CoreServices.OSServices (521 - 521) <22ADB6F4-9F4B-3FB0-9726-7506C08F5F4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
         0x7fff857d2000 -
    0x7fff8582cff7  com.apple.print.framework.PrintCore (8.0 - 379) <120D0FF3-944A-31B2-943E-3E51D90363E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
         0x7fff8582d000 -
    0x7fff858edfff  com.apple.coreui (2.0 - 172) <A082E9DC-1D04-36D9-ABDC-22425C650174> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
         0x7fff858ee000 -
    0x7fff85919ff7  libxslt.1.dylib (??? - 11.1) <4F030C81-624F-3CDB-A636-60492EB5ABAB> /usr/lib/libxslt.1.dylib
         0x7fff8591a000 -
    0x7fff8591afff  com.apple.Accelerate (1.8 - Accelerate 1.8) <8A3970BF-250A-3057-8115-CD47C846A1E0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
         0x7fff8591b000 -
    0x7fff85928ff7  com.apple.NetAuth (4.0 - 4.0) <A82B675E-4947-3B77-8D68-6B2EAB2ECA0B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
         0x7fff85929000 -
    0x7fff85c63fff  com.apple.Foundation (6.8 - 917.11) <9FC129D1-C385-3E83-8A8B-914C22C7D1C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
         0x7fff85c64000 -
    0x7fff85c97fff  com.apple.framework.internetaccounts (2.0 - 200) <669352FA-A853-3B03-8C62-15831CAC22A0> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
         0x7fff85c98000 -
    0x7fff85c98fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <0FBEB010-A5D8-3DC4-BC61-604726C81F52> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
         0x7fff85c99000 -
    0x7fff85c9afff  libDiagnosticMessagesClient.dylib (??? - 7) <81814D5D-168A-3DAB-AA87-11600398456C> /usr/lib/libDiagnosticMessagesClient.dylib
         0x7fff85c9b000 -
    0x7fff85ddbfff  com.apple.MediaControlSender (1.4 - 140.16) <0207865F-7255-38F9-B172-6462C5D53FE2> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
         0x7fff85ddc000 -
    0x7fff85dddfff  libsystem_blocks.dylib (??? - 57.2) <15CDE6B5-2C4C-3A07-9CA7-260105AA3EB0> /usr/lib/system/libsystem_blocks.dylib
         0x7fff85dde000 -
    0x7fff85e06ff7  libJPEG.dylib (??? - 818) <7FB0F841-776C-33E9-8B2C-C891CDB64FD4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
         0x7fff85e07000 -
    0x7fff85ea3ff7  com.apple.PDFKit (2.7 - 2.7) <7D1313DD-3B04-36CA-8CEA-CD32F353D972> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
         0x7fff85ea4000 -
    0x7fff85efcfff  com.apple.Suggestions (2.0 - 92.0) <0DBC81B0-3D2A-30D4-AD28-9C172A9EBCEA> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
         0x7fff85f17000 -
    0x7fff85f17fff  libkeymgr.dylib (??? - 25) <72B4F186-0234-30A9-B7A1-B8BD7DF1A48B> /usr/lib/system/libkeymgr.dylib
         0x7fff85f18000 -
    0x7fff85f58fff  com.apple.bom (12.0 - 188) <B7F3716C-2B1A-36A8-B3E5-2ED8FEBD4038> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
         0x7fff85f59000 -
    0x7fff85f5dfff  libpam.2.dylib (??? - 19) <3716E498-3271-396B-9222-993CE028A87C> /usr/lib/libpam.2.dylib
         0x7fff85f5e000 -
    0x7fff85f97ff7  com.apple.GSS (3.0 - 2.0) <8C958315-B0C8-36AD-9782-DE697FAB98E3> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
         0x7fff85f98000 -
    0x7fff85f9bfff  com.apple.help (1.3.2 - 42) <E0A8DEF9-D6A0-3450-BB79-92189371A970> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
         0x7fff85fa5000 -
    0x7fff860a1ff7  com.apple.QuickLookUIFramework (4.0 - 521.1) <5A337E6E-1ABA-3267-85F4-0BA1BA13BBEB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
         0x7fff860a2000 -
    0x7fff860cefff  libRIP.A.dylib (??? - 250.0.5) <79673967-0BAD-3B4E-BBB9-F607DD481742> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
         0x7fff86107000 -

    HELP, I'm cant open xcode, error up!

  • /System/Library/Extensions/USBAtTable.kext installation error (Xcode)

    While installing Xcode 3.2 and iPhone SDK 3.1 for Mac OS X 10.6 Snow Leopard, the following error message is shown "/System/Library/Extensions/USBAtTable.kext installation error". Could anyone help.
    Regards,
    MKS

    Try the developer forums under OS X Technologies. Alternatively, download and install Xcode Tools 3.2.1, followed by the latest iPhone SDK.

  • Internal error Xcode 3.2.4

    I'm getting this error message everytime i run Xcode. Started after updating to the sdk for iphone 4.1.
    File: /SourceCache/iPhoneXcodePlugin/iPhoneXcodePlugin-330.1/XCRemoteIPhone.m
    Line: 93
    Object: <XCRemoteIPhone>
    Method: beginListeningForDevices
    No device support packages are installed. You may continue to use Xcode, however, device management functionality will be unavailable.
    Anyone knows how to fix this?
    Many thanks

    Any answer? I just installed Xcode 3.2.4 and when I open xcode now it starts with this internal error. Anything I did wrong on the install?

  • XMPToolkitSDK64 build error Xcode 6

    Hi,
    I'm trying to build the the sdk with Xcode. I ran the shell script and selected option 4 to make a dynamic 64bit Xcode build. The shell was successful and I opened the XMPToolkitSDK64.xcodeproj. There was a warning to automatically update the project settings which I followed. Made sure the target was building for the latest sdk. I'm trying to run ALL_BUILD and it fails at ZERO_CHECK with 1 issue:
    PhaseScriptExecution CMake\ Rules xcode/dynamic/intel_64/XMPToolkitSDK64.build/Debug/ZERO_CHECK.build/Script-344FD180C52B49 5F800CA666.sh
        cd /Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build
        /bin/sh -c /Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/XMPToolkitSDK64 .build/Debug/ZERO_CHECK.build/Script-344FD180C52B495F800CA666.sh
    echo ""
    make -f /Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeScripts/Re RunCMake.make
    make[1]: *** No rule to make target `/Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeFiles/2.8 .11.1/CMakeCCompiler.cmake', needed by `/Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeFiles/cma ke.check_cache'.  Stop.
    make: *** [/Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeFiles/ZER O_CHECK] Error 2
    Command /bin/sh failed with exit code 2
    I then ran the other schemes and they worked. Only ZERO_CHECK has an error and won't build. Do I need it to get started or any idea how to fix this?
    Better yet, if anyone can put up all the files, including Xcode samples project, already built that would be great. I'm getting stuck just trying to get the code I need to make what I need. It's really frustrating. I suppose maybe this whole thing is just over my head and fixing this is something simple but If I didn't need to read xmp to get marker data from mp3s I'd not be waisting my time right now.
    Message was edited by: Eugene Moss

    Hi everybody,
    I use Flex SDK 11.0 with the latest AIR 15 from Adobe Labs with XCode 6 and compiled our app for iOS 8 with the new "Default" image sizes.
    This is what I get on my iPhone 6 Plus:
    iPhone 5 format:
    Default image included: Default-568h@2x~iphone.png (size: 640x1136 pixels)
    stage.stageWidth: 640
    stage.stageHeight: 960
    Capabilities.screenResolutionX: 640
    Capabilities.screenResolutionY: 1136
    Capabilities.screenDPI: 326
    iPhone 6 format:
    Default image included: [email protected] (size: 750x1334 pixels)
    stage.stageWidth: 640
    stage.stageHeight: 960
    Capabilities.screenResolutionX: 828
    Capabilities.screenResolutionY: 1472
    Capabilities.screenDPI: 326
    iPhone 6 Plus format:
    Default image included: [email protected] (size: 1242x2208 pixels)
    stage.stageWidth: 640
    stage.stageHeight: 960
    Capabilities.screenResolutionX: 828
    Capabilities.screenResolutionY: 1472
    Capabilities.screenDPI: 326
    As you can see, screenDPI is always 326 and stage size always 640 x 960. Any ideas how to we activate full pixel support for stage?

  • Installation error xcode 4.2.1 on macmini 1.1

    Hi all,
    Hope somebody here can help me with the following issue.
    I was trying to install xcode on a macmini c2d with lion 10.7.
    I have try xcode 4.5.2  but was not possible.
    4.3.3 not possible.
    Then I have tried with 4.2.1, Build 4D502 and the installation was succesful.
    But when I hit the Open New Project button, it crashes with an Internal error
    This is the message I got in the showing details dialog
    UNCAUGHT EXCEPTION (NSInvalidArgumentException): -[IDECustomToolbar setFullScreenAccessoryView:]: unrecognized selector sent to instance 0x4016ee360
    UserInfo: (null)
    Hints: None
    Backtrace:
      0  0x00007fff947e0e4a __exceptionPreprocess (in CoreFoundation)
      1  0x00007fff96526dca objc_exception_throw (in libobjc.A.dylib)
      2  0x00007fff9485c725 -[NSObject doesNotRecognizeSelector:] (in CoreFoundation)
      3  0x00007fff947b2b33 ___forwarding___ (in CoreFoundation)
      4  0x00007fff947af3e8 _CF_forwarding_prep_0 (in CoreFoundation)
      5  0x000000011030a10e -[IDEWorkspaceWindowController windowDidLoad] (in IDEKit)
      6  0x00007fff980d77c2 -[NSWindowController _windowDidLoad] (in AppKit)
      7  0x00007fff9807618e -[NSWindowController window] (in AppKit)
      8  0x000000011051b6c8 -[IDEDocumentController _openUntitledWorkspaceDocumentAndDisplay:simpleFilesFocused:editorDocumentURLOr Nil:error:] (in IDEKit)
      9  0x0000000110400d4f -[IDEApplicationCommands showTemplateChooserForTemplateKind:] (in IDEKit)
    10  0x00007fff9485b6ad -[NSObject performSelector:withObject:] (in CoreFoundation)
    11  0x00000001103f84b8 -[IDEApplicationController(IDECommandAdditions) forwardInvocation:] (in IDEKit)
    12  0x00007fff947b2cb4 ___forwarding___ (in CoreFoundation)
    13  0x00007fff947af3e8 _CF_forwarding_prep_0 (in CoreFoundation)
    14  0x00007fff9485b6ad -[NSObject performSelector:withObject:] (in CoreFoundation)
    15  0x00007fff981dbd00 -[NSApplication sendAction:to:from:] (in AppKit)
    16  0x000000010fc1ed10 -[DVTApplication sendAction:to:from:] (in DVTKit)
    17  0x0000000110306cf4 -[IDEApplication sendAction:to:from:] (in IDEKit)
    18  0x00000001103fb0f5 +[IDECommandManager sendActionForCommandWithIdentifier:from:] (in IDEKit)
    19  0x00007fff9485b6ad -[NSObject performSelector:withObject:] (in CoreFoundation)
    20  0x00007fff981dbd00 -[NSApplication sendAction:to:from:] (in AppKit)
    21  0x000000010fc1ed10 -[DVTApplication sendAction:to:from:] (in DVTKit)
    22  0x0000000110306cf4 -[IDEApplication sendAction:to:from:] (in IDEKit)
    23  0x00007fff981dbc32 -[NSControl sendAction:to:] (in AppKit)
    24  0x00007fff98261a4e -[NSCell _sendActionFrom:] (in AppKit)
    25  0x00007fff98261355 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    26  0x00007fff9829013a -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    27  0x00007fff9825fe7b -[NSControl mouseDown:] (in AppKit)
    28  0x00007fff981863fc -[NSWindow sendEvent:] (in AppKit)
    29  0x00007fff980bd4a6 -[NSApplication sendEvent:] (in AppKit)
    30  0x0000000110306a11 -[IDEApplication sendEvent:] (in IDEKit)
    31  0x00007fff98055593 -[NSApplication run] (in AppKit)
    32  0x00007fff9804e33d NSApplicationMain (in AppKit)
    33  0x000000010fa00eec (in Xcode)
    34  0x0000000000000002
    can anyone help me out
    thanks in advance
    alfredo

    I have try xcode 4.5.2  but was not possible.
    4.3.3 not possible.
    You can install Xcode 4.3, 4.4, or 4.5 on Lion. Xcode 4.5.2 requires Mac OS X 10.7.4 or later so you may need to update your operating system to 10.7.4 before you can install Xcode.

  • Internal Error: How To re-install XCode on Lion

    Hi,
    After having upgraded from Mac OS X Snow Leopard to Lion I downloaded XCode 4.0 (it took a while..) and run the installer.
    Unfortunately XCode crashes right after the startup without showing any XCode typical splash screen or so, just the error message window
    saying "Internal Error: Xcode encountered an internal error ..."
    I found some hint on the net saying that I should remove the installation using the command "sudo /Developer/Library/uninstall-devtools --mode=all"
    After having ran this I tried to download XCode again from the MacAppStore, but the button still sayed "Installed" and did not let me download Xcode
    again. I used Spotlight to search for Xcode and found the "Install Xcode" application in the application folder. I moved it to the desktop. Did not work.
    I moved it to some other hard disk. Did not work. Only when I unmounted the extra hard disk, the MacAppStore let me "install" the application.
    I entered my name and password and pressed the "Install" button. But nothing happened (the first time the XCode icon jumped into my dock and I could see some progress in the download (after a while..))
    So what is the problem now again? The MacAppStore also suggests me (still) an XCode upgrade, although I have run the above command. So I guess there is still some reference to XCode around... Who can help?
    Thanks for any advice!
    Christoph

    • Check /Library/Receipts/ to see if there is an Xcode Receipt - if so, move it to the desktop and then hit the store again.
    • In the Applications directory (or LaunchPad?) is there an icon named 'Install Xcode' ?
    Good luck in any case.

  • Xcode encountered an internal logic error

    I have just installed xcode 4 on my MacMini. I am new to developing and just today have started learning objective c. when i open xcode 4 it gives me an error:
    Internal Error
    Xcode encountered an internal logic error. Choose "Continue" to continue running Xcode in an inconsistent state. Choose "Crash" to halt Xcode and file a bug with Crash Reporter. Choosing "Crash" will result in the loss of all unsaved data.
    and also when i click on the show details button it gives me this:
    ASSERTION FAILURE in /SourceCache/DVTFoundation/DVTFoundation-215/Framework/Classes/PlugInArchitectu re/DVTPlugInManager.m:215
    Details: (extensionPoint) should not be nil.
    Object: <DVTPlugInManager: 0x2000a3c20>
    Method: -_extensionsForExtensionPoint:matchingPredicate:
    Thread: <NSThread: 0x200020600>{name = (null), num = 1}
    Hints: None
    Backtrace:
    0 0x000000010092e613 -[IDEAssertionHandler handleFailureInMethod:object:fileName:lineNumber:messageFormat:arguments:] (in IDEKit)
    1 0x000000010006d974 _DVTAssertionFailureHandler (in DVTFoundation)
    2 0x000000010001b2b7 -[DVTPlugInManager _extensionsForExtensionPoint:matchingPredicate:] (in DVTFoundation)
    3 0x000000010001b23d -[DVTPlugInManager sharedExtensionsForExtensionPoint:matchingPredicate:] (in DVTFoundation)
    4 0x0000000100a2a771 __61+[IDEDocumentController THREAD_allOrganizerSourceExtensions]_block_invoke0 (in IDEKit)
    5 0x00007fff889bbc65 dispatchoncef (in libSystem.B.dylib)
    6 0x0000000100a2a704 +[IDEDocumentController THREADallOrganizerSourceExtensions] (in IDEKit)
    7 0x0000000100a2b162 +[IDEDocumentController _organizerSourceExtensionForDocumentType:] (in IDEKit)
    8 0x00000001009286f0 -[IDEApplicationController _openFiles:] (in IDEKit)
    9 0x00007fff81c0f9d6 -[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:] (in AppKit)
    10 0x00007fff81adc00d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] (in AppKit)
    11 0x00007fff82e78f62 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] (in Foundation)
    12 0x00007fff82e78d92 _NSAppleEventManagerGenericHandler (in Foundation)
    13 0x00007fff8841a323 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) (in AE)
    14 0x00007fff8841a21c dispatchEventAndSendReply(AEDesc const*, AEDesc*) (in AE)
    15 0x00007fff8841a123 aeProcessAppleEvent (in AE)
    16 0x00007fff86e45765 AEProcessAppleEvent (in HIToolbox)
    17 0x00007fff819e104b _DPSNextEvent (in AppKit)
    18 0x00007fff819e07a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in AppKit)
    19 0x00007fff819a648b -[NSApplication run] (in AppKit)
    20 0x00007fff8199f1a8 NSApplicationMain (in AppKit)
    21 0x0000000100000eec
    Can anyone help? Or can they at least tell me the problem. Thanks, Ivanthehackerful.

    I just upgraded to Lion and upgraded to Xcode 4. Everytime I open Xcode 4 I get the same "Xcode encountered an internal logic error. Choose "Continue" to continue running Xcode in an inconsistent state.  Choose "Crash" to halt Xcode and file a bug with Crash Reporter. Choosing "Crash" will result in the loss of all unsaved data." error.
    The details show a problem with "iPhonePlaceholder". Could this be something from the older version?
    UNCAUGHT EXCEPTION (NSInternalInconsistencyException): Couldn't load plug-in 'com.apple.dt.IDE.IDEiPhoneSupport' while firing fault for extension 'Xcode.Device.iPhonePlaceholder'
    UserInfo: {
        NSUnderlyingError = "Error Domain=DVTPlugInErrorDomain Code=2 \"Loading a plug-in failed.\" UserInfo=0x40015aa80 {DVTPlugInIdentifierErrorKey=com.apple.dt.IDE.IDEiPhoneSupport, DVTPlugInExecutablePathErrorKey=/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPho neSupport, NSLocalizedRecoverySuggestion=The plug-in or one of its prerequisite plug-ins may be missing or damaged and may need to be reinstalled., NSLocalizedDescription=Loading a plug-in failed., NSFilePath=/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Priva tePlugIns/IDEiPhoneSupport.ideplugin, NSLocalizedFailureReason=The plug-in \U201ccom.apple.dt.IDE.IDEiPhoneSupport\U201d at path \U201c/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlu gIns/IDEiPhoneSupport.ideplugin\U201d could not be loaded.  The plug-in or one of its prerequisite plug-ins may be missing or damaged., NSUnderlyingError=0x40039d3a0 \"The bundle \U201cIDEiPhoneSupport\U201d couldn\U2019t be loaded because it is damaged or missing necessary resources.\"}";
    Hints: None
    Backtrace:
      0  0x00007fff8290c96a __exceptionPreprocess (in CoreFoundation)
      1  0x00007fff8a074d5e objc_exception_throw (in libobjc.A.dylib)
      2  0x00000001007c9c98 -[DVTExtension _fireExtensionFault] (in DVTFoundation)
      3  0x00000001007b47f9 __38-[DVTDispatchLock performLockedBlock:]_block_invoke_0 (in DVTFoundation)
      4  0x00007fff89599afd _dispatch_barrier_sync_f_invoke (in libdispatch.dylib)
      5  0x00000001007b47a9 -[DVTDispatchLock performLockedBlock:] (in DVTFoundation)
      6  0x00000001007c9a45 -[DVTExtension _valueForKey:inParameterData:usingSchema:] (in DVTFoundation)
      7  0x00000001007c99ab -[DVTExtension valueForKey:] (in DVTFoundation)
      8  0x00000001007c9167 +[DVTDevice _knownDeviceLocators] (in DVTFoundation)
      9  0x00000001007c8cea -[DVTDeviceManager startLocating] (in DVTFoundation)
    10  0x0000000100cfe07a IDEInitialize (in IDEFoundation)
    11  0x0000000101072c0b -[IDEApplicationController applicationWillFinishLaunching:] (in IDEKit)
    12  0x00007fff89d42716 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 (in Foundation)
    13  0x00007fff828b551a _CFXNotificationPost (in CoreFoundation)
    14  0x00007fff89d2e9cb -[NSNotificationCenter postNotificationName:object:userInfo:] (in Foundation)
    15  0x00007fff8111d6c8 -[NSApplication finishLaunching] (in AppKit)
    16  0x00007fff8111d27d -[NSApplication run] (in AppKit)
    17  0x00007fff8139b52a NSApplicationMain (in AppKit)
    18  0x00000001007aceec (in Xcode)
    19  0x0000000000000002

  • Debug Adobe Photoshop CS4 Plugin in XCode 2.5

    Hello I've added PS CS4 as an Executable following the instructions on http://developer.apple.com/qa/qa2006/qa1500.htmlbut am getting this error message when I try to build and debug in Xcode:
    "GDB: Error: Xcode could not locate source file: kill.s (line:28)"
    Any help would be appreciated. Thank you,
    Andreas

    I can't install Xcode 3.1 on the Mac OS X 10.4.11. Here's my ouput when I try to build and run using Photoshop as my executable environment:
    [Session started at 2009-04-14 13:46:29 +0200.]
    2009-04-14 13:46:30.680 Adobe Photoshop CS4[1941] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    [Session started at 2009-04-14 13:46:43 +0200.]
    2009-04-14 13:46:44.171 Adobe Photoshop CS4[1943] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    [Session started at 2009-04-14 13:47:01 +0200.]
    2009-04-14 13:47:02.079 Adobe Photoshop CS4[2040] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    Here the output for build and debug:
    Maybe there are some additional arguments or debugging settings required under the photoshop's executable environment settings. Any tips?

Maybe you are looking for

  • How to get the selected node value of a tree which is build on java code

    Hi Experts, How can i get the selected node value if I build the tree programatically. I am using the following code in selectionListener but it is throwing error. RichTreeTable treeTable = (RichTreeTable)getQaReasontreeTable(); CollectionModel _tabl

  • Drill down in Bex is different than drill down in WAD

    Hello experts. I have been creating queries in Bex for 6 years and am very familiar with the Bex functionality.  I recently started embedding some Bex queries into the WAD and of course am displaying them on the web.  I am experiencing an unexpected

  • MYSQL Without JDBC

    Is there a way to connect to a MYSQL database without using the JDBC driver?

  • In se16, nast table is giving dump.

    As a Developer what can I do for the below issue ? In se16, table name : Nast When I tried to view all the entires in Nast table, I have got dump saying that TSV_TNEW_PAGE_ALLOC_FAILED and code is   564 try. >>>>> SELECT * FROM NAST                  

  • Adding GPU Accelerated Cuda Effects is suddenly very laggy?

    Hello Adobe Experts, I am appealing for some help with an issue that has bugged me for a little while. The best way to explain it is to show you the problem in a short 4 minute video which I will post below for those who have the time to take a look.