3

我是新手,我想得到一些建议,因为我不知道我做错了什么。我想在 xcode 中制作一个UIView带有一些项目的应用程序,当你做某事时,另一个UIView(小于第一个)会在第一个上方弹出UIView。弹出窗口UIView将是一个自定义类。

我已经从UIViewController模板和首字母开始UIView,我已经链接了 中的所有项目.storyboard,并且它可以工作。但是当我创建自己的UIView类时(from objective-C class),将第二个UIView放在第一个上storyboard并将其链接到我的类时,出现了问题。

出现UIView了,但是当我尝试将其设置为隐藏时,它没有回答。就像它没有收到消息一样,所以我认为我没有以编程方式很好地链接它,只是因为storyboard.

我不知道我是否必须创建另一个 UIViewController 而不是 UIView,或者这是否是正确的路径。

谁能给我解释一下,或者只是写一个带有第二个视图实例化的小代码片段并添加它?

非常感谢!!

(我粘贴了一些代码,.h 中的声明和 .m 中的实例化)

     #import <UIKit/UIKit.h>
     #import "EditView.h"

    @interface ReleaseViewController : UIViewController <UIWebViewDelegate, UISearchBarDelegate> {

        IBOutlet UIWebView *web;
        IBOutlet UISearchBar *search;
        IBOutlet EditView *evHack;

    }

    @property (nonatomic, retain) IBOutlet UIWebView *web;
    @property (nonatomic, retain) IBOutlet UISearchBar *search;
    @property (nonatomic, retain) IBOutlet EditView *evHack;

    @end

- (void)viewDidLoad
{
    [super viewDidLoad];

    search.delegate = self;
    web.delegate = self;

    evHack = [evHack initWithFrame:CGRectMake(0, 44, 320, 377)]; 
    [evHack setHidden:YES]; 

}

EditView 类(我还是什么都没有):

#import <UIKit/UIKit.h>

@interface EditView : UIView

@end



#import "EditView.h"

@implementation EditView

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        NSLog(@"View created");
    }
    return self;
}

/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
    // Drawing code
}
*/

@end
4

1 回答 1

0

initWithFrame 仅在您分配/初始化应用程序时有效。如果它已经初始化,在这种情况下由情节提要,只需设置它的框架:

evHack.frame = CGRectMake(0,44, 320, 377);

我不知道它在 IB 中是什么样子的,但是如果你也在 IB 中设置它,那么在代码中设置它的框架可能是多余的。要检查 evHack 是否正确连接,请在 viewDidLoad 中使用 NSLog evHack。如果你nil回来了,它就没有正确连接。

于 2012-06-23T16:51:35.940 回答