我有一位主计长,正在对《国际调查评论》中和外的物体进行pping击。 可能有数百种不同的观点,每种观点都有自己的行为。
在我目前的主要档案中,我有:
File s Owner UIApplication
First Responder UIResponder
AppDelegate AppDelegate
-Cover Cover
Window UIWindow
Table of Contents TableOfContents
page1 Page1
page2 Page2
page...n Page...n
推荐人宣布窗户和主计长。 它是很基本的。
MainViewController.h
#import <UIKit/UIKit.h>
@class TableOfContents, Page1;
@interface MainViewController : UIViewController {
TableOfContents *tableOfContents;
Page1 *page1;
Page2 *page2;
Page...n *page...n;
}
@property (nonatomic, retain) IBOutlet TableOfContents *tableOfContents;
@property (nonatomic, retain) IBOutlet Page1 *page1;
@property (nonatomic, retain) IBOutlet Page2 *page2;
@property (nonatomic, retain) IBOutlet Page...n *page...n;
-(IBAction)funcGoToPage:(id)sender;
@end
MainViewController.m
#import "MainViewController.h"
#import "TableOfContents.h"
#import "Cover.h"
#import "Page1.h"
#import "Page2.h"
#import "Page...n.h"
@implementation MainViewController
@synthesize page1, page2, page...n tableOfContents;
@synthesize pageID, pagesPathFile, pagesPath;
-(IBAction)funcGoToPage:(id)sender{
//[[self view] removeFromSuperview];
[self.view addSubview:self.tableOfContents];
}
此时此刻,相应的《国际调查》课程基本上没有上课,因此我没有上课。
现在是时候了。 OfContents. 最后,根据被点击的情况,我不得不前往不同的地方。
目前,每一页均作为IBOutlet,与Centrent Controller在Interface Buildinger的“ID”有关。 否则,每一页都必须作为变数建立起来,并与创建变数、插头和连接的中枢连接起来。
我的问题是:是否有办法在传单上建立这些联系,以便我能够利用我的“志愿人员”职能,而不将其设置为“IBOutlet”?