मैंने पहले ही लैंडस्केप मोड के लिए ऐप विकसित किया है, अब ग्राहक लैंडस्केप और पोर्ट्रेट मोड दोनों में निर्माण करने के लिए कह रहा है।लैंडस्केप से पोर्ट्रेट में दृश्य कनवर्ट करना?
मैं लैंडस्केप व्यू को पोर्ट्रेट में कैसे बदल सकता हूं?
अब मैं लैंडस्केप दृश्य के लिए इस कोड का उपयोग कर रहा हूँ:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
कृपया मेरी मदद करो ....
अग्रिम धन्यवाद :)