首页 > 代码库 > Mac 平台开发学习笔记

Mac 平台开发学习笔记

1.  xib下用代码修改控件frame以改变其位置尺寸等视图界面无法更新新坐标

  取消自动布局(auto layout & size classes)

2.  平移动画

  UIView.animateWithDuration(duration:Double, animation: ()->Void, completion: (Bool)->Void)

  duration:间隔时间,单位为秒

  animaiton:动画函数,如果是平移,则self.imgLuffy.frame = CGRect(...)

  complation:动画完成后的函数,函数体内加上if(complate){}

3.  弹出提示

  var alert = UIAlertView(title: "Game Over", message: msg, delegate: nil, cancelButtonTitle: "I Know")

  alert.show()

Mac 平台开发学习笔记