2012-01-04 130 views
1

Xcode 4.2Xcode 4.2縱向和橫向和對齊

我正在使用UIWebView並排顯示兩張圖片。在肖像中,他們左對齊兩張圖片右側的大空間,而不是對齊中心,而且看起來很奇怪。

有沒有辦法讓它們居中對齊?

也有關係,

如何開啓顯示器景觀在Xcode 4.2筆尖文件?

回答

0

您可以在Attribute Insperctor中指定橫向的方向以將顯示轉爲橫向。並且您可以使用「大小」檢查器中的「自動調整大小」將中央的圖像對齊。

+0

我發現他們。感謝您的指導。當用戶進入屏幕時,用戶是否必須打開手機才能啓動橫向,是否有強制橫向顯示的方法? – user1127421 2012-01-04 05:07:23

+0

是的。您可以使用 - (BOOL)shouldAutorotateInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation方法爲此 – Rohan 2012-01-04 05:20:14

0

要打開您的顯示器到風景使用此方法。這將設置您的方向橫向模式。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 
// Return YES for supported orientations 
return (interfaceOrientation == UIInterfaceOrientationLandscape);