84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
UIDevice.currentDevice().performSelector( "setOrientation:", withObject:UIInterfaceOrientation.LandscapeRight )
有如上代码 后面 withObject 的参数是一个 AnyObject 类型的,这样直接传的话会报错,试过几种方法都不行,求大神帮忙。T T
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
改傳 UIInterfaceOrientation.LandscapeRight.rawValue
UIInterfaceOrientation.LandscapeRight.rawValue
id 對應 AnyObject?, 你定義一個帶?的var試驗下:
import Foundation func displayObjectName(yourobject : AnyObject?) { NSLog("%@",yourobject as! String); } var s:String?="Hello,World"; displayObjectName(s);
改傳
UIInterfaceOrientation.LandscapeRight.rawValue
id 對應 AnyObject?, 你定義一個帶?的var試驗下: