Outlets buggy, causing crash?

Posted by Moshe on Stack Overflow See other posts from Stack Overflow or by Moshe
Published on 2010-04-01T07:03:54Z Indexed on 2010/04/01 7:23 UTC
Read the original article Hit count: 599

I've been having issues with making outlets and I was wondering if there is a difference and what the difference could be...

EDIT: Using Outlets seem to be causeing SIGABRT errors...

//
//  hebOmer.h
//  tizkorPush
//
//  Created by Moshe -...- .
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "support.h"
#import "hdate.h"

@interface hebOmer : UIViewController{
 IBOutlet UIScrollView * hebrewScrollView;
 UILabel *hebrewOmer;
}

@property (nonatomic, retain) UIScrollView * hebrewScrollView;
@property (nonatomic, retain) IBOutlet UILabel *hebrewOmer;

@end

Creating an outlet to the UILabel is causing problems. The implementation seems fine. @synthesize and the memory release functions were called properly.

© Stack Overflow or respective owner

Related posts about iphone-sdk

Related posts about objective-c