1. 程式人生 > >iOS獲取螢幕寬度

iOS獲取螢幕寬度

  • 在AppDelegate.h檔案中宣告一個全域性變數:
    @property int currentWidth;//當前螢幕寬度
  • 在AppDelegate.m中,新增:@synthesize currentWidth;
  • 然後在
  • (BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions 中新增:
    currentWidth=[UIScreen mainScreen].bounds.size.width;
  • 在需要使用的地方宣告一個變數令其等於該變數:
    width=delegate.currentWidth;