2012-02-29 20 views
8

Uygulamamdaki bir eylem sayfasını görüntülemek için this posta kodunu kullandım. Ama sebebi ne olacağıiPad UIActionSheet görüntülenmiyor

enter image description here

gibi gösteriyor? eylem sayfasını görüntülemek için

Kodum

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil 
                 delegate:nil 
               cancelButtonTitle:nil 
              destructiveButtonTitle:nil 
               otherButtonTitles:nil]; 

[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent]; 

CGRect pickerFrame = CGRectMake(0, 40, 300, 300); 

UIView *pickerView = [[UIView alloc] initWithFrame:pickerFrame]; 
pickerView.backgroundColor=[UIColor blackColor]; 

[actionSheet addSubview:pickerView]; 


UISegmentedControl *closeButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObject:@"Close"]]; 
closeButton.momentary = YES; 
closeButton.frame = CGRectMake(260, 7.0f, 50.0f, 30.0f); 
closeButton.segmentedControlStyle = UISegmentedControlStyleBar; 
closeButton.tintColor = [UIColor blackColor]; 
[closeButton addTarget:self action:@selector(dismissActionSheet:) forControlEvents:UIControlEventValueChanged]; 
[actionSheet addSubview:closeButton]; 


[actionSheet showInView:[[UIApplication sharedApplication] keyWindow]]; 

[actionSheet setBounds:CGRectMake(0, 0, 320, 485)]; 

[self.view addSubview:actionSheet]; 
+0

Atleast, bazı başlıklara düğmeler verir. Aksi halde ortaya çıkmaz. –

cevap

0

UIActionSheet showFromRect veya UIActionSheet showFromBarButtonItem: yöntemini kullanın.

UIActionSheetDelegate yöntemlerdir -

- (void)showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated; 
- (void)showFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated; 

örnek:

[actionSheet showFromRect:self.btnShare.frame inView:self.view animated:YES]; 

Eğer iPhone uygulaması kullanımı için UIActionSheet showInView yöntemini kullanıyorsanız -

- (void)showInView:(UIView *)view; 

örnek -

[actionSheet showInView:self.view.window];