インターフェイスファイルに次のコードがあります。
#import <UIKit/UIKit.h>
#import <AddressBook/AddressBook.h>
@class FaxRecipient;
//Definition of the delegate's interface
@protocol AddLocalRecipientsTableViewControllerDelegate
-(void)getLocalRecipient:(FaxRecipient*)recipient;
@end
@interface AddLocalRecipientsTableViewController : UITableViewController {
NSMutableArray *localRecipientItems;
NSURLConnection *connectionInprogress;
UIActivityIndicatorView *activityIndicator;
NSIndexPath *lastIndexPath;
FaxRecipient * faxRecipient;
}
@property(nonatomic,retain) NSIndexPath *lastIndexPath;
@property(nonatomic,retain)FaxRecipient * faxRecipient;
@property (nonatomic, assign) id<AddLocalRecipientsTableViewControllerDelegate> delegate;
-(void) loadLocalRecipients;
実装ファイルに次の行があります。
@synthesize delegate=_delegate;
アンダースコアを使用した合成とはどういう意味ですか?つまり、通常の合成が何をするかを知っています。すべてが正常に機能し、他のサイトでこのコード例を確認しました。