べすとえふぉーと

プログラミング等のノート 

UAModalPanelの使い方

Githubから落として
https://github.com/coneybeare/UAModalPanel

ファイルをコピー

f:id:type90:20130418082123p:plain

f:id:type90:20130418082136p:plain

f:id:type90:20130418082145p:plain

importして

#import "UAModalPanel.h"
#import "UAExampleModalPanel.h"

表示する

    UAModalPanel *modalPanel = [[[UAExampleModalPanel alloc] initWithFrame:self.view.bounds] autorelease];
    [self.view addSubview:modalPanel];
    modalPanel.delegate = self;
    [modalPanel showFromPoint:self.view.center];

サイズの取得はdelegateで

-(void)didShowModalPanel:(UAModalPanel *)modalPanel {
    NSLog(@"%f %f %f %f" , modalPanel.frame.origin.x,modalPanel.frame.origin.y,
          modalPanel.frame.size.width,modalPanel.frame.size.height);
}