Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
UICalloutView: Difference between revisions - iPhone Development Wiki

UICalloutView: Difference between revisions

From iPhone Development Wiki
mNo edit summary
 
Line 20: Line 20:


== UICalloutView delegate ==
== UICalloutView delegate ==
{{Function signature|firmware=2.0 — 3.1|signature=@property(assign,nonatomic) id delegate;}}
{{Function signature|firmware=2.0 |signature=@property(assign,nonatomic) id delegate;}}


One could assign a delegate to a UICalloutView. The delegate must conform to the informal protocol:
One could assign a delegate to a UICalloutView. The delegate must conform to the informal protocol:

Latest revision as of 09:14, 22 November 2009

UICalloutView in action

UICalloutView is a "callout" view which looks like a dialog box. It was used in MobileMaps.app.

Using UICalloutView

UICalloutView* callout = [UICalloutView sharedCalloutView];
[callout setTitle:@"Title"];
[callout setSubtitle:@"subtitle"];
[callout addTarget:self action:@selector(closeCalloutView:)];
[window addSubview:callout];
[callout setAnchorPoint:CGPointMake(80, 40) boundaryRect:[UIScreen mainScreen].applicationFrame animate:YES];

...

-(void)closeCalloutView:(UIButton*)sender {
  [(UICalloutView*)sender.superview fadeOutWithDuration:1];
}

UICalloutView delegate

Signature @property(assign,nonatomic) id delegate;
Available in 2.0 –

One could assign a delegate to a UICalloutView. The delegate must conform to the informal protocol:

@protocol UICalloutViewDelegate
@optional
-(void)calloutView:(UICalloutView*)calloutView willMoveToAnchorPoint:(CGPoint)newPoint animated:(BOOL)animated;
-(void)calloutView:(UICalloutView*)calloutView didMoveToAnchorPoint:(CGPoint)newPoint animated:(BOOL)animated;
@end

Reference