18
[ইউআইস্ক্রিন মেনস্ক্রিন] .বাউন্ডস.স আইওএস 8-এ ওরিয়েন্টেশন-নির্ভর হয়ে উঠছে?
আমি iOS 7 এবং iOS 8 উভয়টিতে নিম্নলিখিত কোডটি চালিত করেছি: UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; BOOL landscape = (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight); NSLog(@"Currently landscape: %@, width: %.2f, height: %.2f", (landscape ? @"Yes" : @"No"), [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height); নিম্নলিখিত আইওএস 8 এর ফলাফল: …