2012-10-10 55 views
1

我有幾個關於Popover Segue的問題。在這種情況下,應該在故事板中使用Popover segue?

1)在什麼情況下應該使用它?

2)在我的情況下,我必須顯示在按鈕點擊和具有另一個視圖控制器popver酥料餅中所示具有圖像作爲酥料餅然後如何隱藏外天然圖一figure.1

3)如果一個人藍色popover?如圖圖二figure.2

4)這是在使用利用下面上按鈕代碼酥料餅賽格瑞&不同單擊

classobj = [self.storyboard instantiateViewControllerWithIdentifier:@"identifier"]; 
    popOver = [[UIPopoverController alloc] initWithContentViewController:classobj]; 
    [popOver presentPopoverFromRect:CGRectMake(689,10,50,50) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES]; 

回答

0

1)當要呈現酥料餅,而無需編寫代碼作爲實施例4

2)在這不是一個問題

3)無法在圖像中簡單地丟棄作爲酥料餅的框架的替代來使用。您需要定義一個UIPopoverBackgroundView的自定義子類,如我的回答here中所述。 4)你的代碼有一個設置的位置和箭頭的方向,segue會根據你的VC中的位置推斷出你的這些。如果你想進一步定製,但仍然使用segue,你可以使用prepareForSegue:

相關問題