[已解决]Swift代码出错:Cannot convert value of type UIView? to specified type UIButton
crifan 9年前 (2015-10-16) 4087浏览 0评论
[问题] ObjC代码: UIButton *fromButton = (UIButton *)[tabButtonsContainerView viewWithTag:TagOffset + _selectedIndex]; 转换为swift: ...
crifan 9年前 (2015-10-16) 4087浏览 0评论
[问题] ObjC代码: UIButton *fromButton = (UIButton *)[tabButtonsContainerView viewWithTag:TagOffset + _selectedIndex]; 转换为swift: ...
crifan 9年前 (2015-10-15) 5127浏览 0评论
[背景] swift中的代码: var viewControllers = [UIViewController]() ... let toViewController:UIViewController = self.viewControllers[...
crifan 9年前 (2015-10-15) 3009浏览 0评论
[背景] 折腾: [已解决]如何把Object-C中的protocol和delegate转为Swift代码 期间,去把代码改为: protocol RecordTabBarControllerDelegate { func should...
crifan 9年前 (2015-10-15) 2102浏览 0评论
关于swift中的可选值,optional,带问号的变量 尝试去搞懂: 看了: 行走于 Swift 的世界中 解释的不错。 后来折腾: [已解决]Swift中如何获得一个变量的类型type 期间,对于代码: print( "String((...
crifan 9年前 (2015-10-15) 7639浏览 0评论
[背景] 折腾: [已解决]如何把Object-C中的protocol和delegate转为Swift代码 期间,需要去搞懂,最原始的ObjC的代码: if ([self.delegate respondsToSelector:@selector(m...
crifan 9年前 (2015-10-14) 2862浏览 0评论
[背景] 折腾: [已解决]如何把Object-C中的protocol和delegate转为Swift代码 期间,看到之前OC代码: - (BOOL)mh_tabBarController:(MHTabBarController *)tabBarCo...
crifan 9年前 (2015-10-14) 3240浏览 0评论
[问题] 已有OC代码: MHTabBarController.h @protocol MHTabBarControllerDelegate; /* * A custom tab bar container view controller. It...
crifan 9年前 (2015-10-14) 2597浏览 0评论
[问题] 将OC代码转换为swift期间,代码: func setSelectedIndex(newSelectedIndex:UInt, animated:BOOL) { 出错: Use of undeclared type ̵...
crifan 9年前 (2015-10-14) 1779浏览 0评论
[问题] 将OC代码转换为swift期间,代码: func setSelectedIndex(newSelectedIndex:UInt, animated:BOOL) { 出错: Use of undeclared type ̵...
crifan 9年前 (2015-10-12) 4770浏览 0评论
[问题] 从OC转换为swift的代码: var selectedViewController:UIViewController? var viewControllers = [UIViewController]() { ...