English 中文(简体)
• 如何建立电离层电离层电离层电离层,并将电离层连接起来
原标题:How to set up a subclass of UIScrollView, and connect it in Interface Builder

首先,我认为控制人员从下面的守则开始,但出于我的工作,我需要将以下守则单独列为一类。 因此,我创建了一个我下面所贴的习俗学课。

在这一点上,我有可能在我的控制师中树立起这一级的榜样,创建IBOut,并将其与界面建筑商的UIScrollView(或某种观点)连接起来,并获得同样的行为,我如何做这样的事情?

海关

#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>

@interface CustomView : UIScrollView <UIScrollViewDelegate> {

    UIScrollView    *scrollView;
    UIImageView     *imageView;

}

@property (nonatomic, retain) IBOutlet UIScrollView     *scrollView;
@property (nonatomic, retain) UIImageView               *imageView;

海关

#import <UIKit/UIKit.h>

@implementation CustomView
@synthesize scrollView, imageView;


    - (id)init {

        if (self = [super init]) {

            // Initialization code
            UIImageView *temp = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myImage.png"]];
            self.imageView = temp;
            [temp release];

            scrollView.contentSize = CGSizeMake(imageView.frame.size.width, imageView.frame.size.height);
            //Other Scroll View Properties
            scrollView.delegate = self;
            [scrollView addSubview:imageView];
        }

        return self;
    }


    - (void)dealloc {
        [scrollView release];
        [imageView release];
        [super dealloc];
    }


    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

        //Perform an action

    }

    @end
最佳回答

您可在国际贸易体系中设立<代码>CustomView。 Just drag out a UIScroll 观点,并表明您的意愿。 然后向身份检查员开放(cmd+4),并将类别改为CustomView。 那么,你可以把它 h到像正常的let子上。

问题回答

你们是否真的想要在你本人的《意见》中发表《意见》?

页: 1 观点应当成为你的内在方法的 n子,这样,它就能够按照预期获得工作。

我不相信,整个结构/等级是你们想要的东西......





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。