Screen draaien discussie in Ontwikkelen voor iOS forum; ( verdwijnt na registratie ) Code: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); } Mijn app start in portrait mode,Ik gebruik bovenstaande code om ...
|
Registreer | FAQ | Ledenlijst | Kalender | Berichten van vandaag | Zoeken |
#1
|
||||
|
||||
Screen draaien
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); } |
|
|
Gesponsorde links (verdwijnt na registratie)
|
#2
|
||||
|
||||
Ik programmeer zelf niet voor de iPhone maar heb wel scriptervaring, en het lijkt mij logisch om UIInterfaceOrientationLandscapeRight te vervangen door UIInterfaceOrientationPortrait, waardoor je deze code zou krijgen:
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationPortrait); } |
#3
|
||||
|
||||
Citaat:
|
#4
|
||||
|
||||
Ah, jammer.
Wil je eigenlijk dat 'ie automatisch draait (dus zodra je je iPhone draait) of handmatig, met een button o.e.d.? Probeer dit eens: Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return true; } Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (true); } Je kan ook een variant nemen, namelijk alleen roteren als de iPhone portrait of landscape is. In de praktijk zal dit hetzelfde zijn, maar misschien vind je het netter. Waarschijnlijk moet je dat dan zo doen: Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationPortrait); } Laatst gewijzigd door jonathan; 07-10-08 om 10:18. |
#5
|
||||
|
||||
Moest dus automatisch meedraaien.
bedankt ! De eerste code doet perfect wat ik wil moet alleen nog wanneer ik draai mijn label en textfield in het midden krijgen. Maar dat vind ik wel. Laatst gewijzigd door macfreaker; 07-10-08 om 13:44. |
#6
|
||||
|
||||
Gewoon even aanpassen in Interface Builder
|
#7
|
|||
|
|||
Volgens mij staat dit ook uitgelegd in de iPhone Developers Guide (of hoe heet ie) die je van de iPhone developer site kunt downloaden. Sowieso wel goed om die eens te lezen.
|
Er zijn 1 actieve gebruikers die momenteel deze discussie bekijken (0 leden en 1 gasten) |
|
Soortgelijke discussies |
||||
Discussie | Auteur | Forum | Reacties | Laatste bericht |
Scherm draaien | cyberchase | iPhone algemeen | 7 | 23-04-11 14:31 |
Video: Film 90° Draaien | bram2202 | Muziek, foto & video | 6 | 09-06-10 14:24 |
Foto: Foto's draaien | scarrie | Muziek, foto & video | 2 | 28-03-09 10:25 |
Script Draaien | Biatelli | Unlock [archief] | 1 | 06-04-08 20:18 |
Foto: Foto's draaien? | evexel | Muziek, foto & video | 4 | 01-03-08 11:05 |
|
|