Outlets buggy, causing crash?
- by Moshe
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.