我在编写vba时遇到一些麻烦,我对此有点新鲜。到目前为止,代码正在按我想要的方式工作,但只能转换前8行(第3行到第11行)。我的行设置为3到26,我需要根据列k中的值将行转换为列。有没有人知道为什么在第11行后停止?
在列k中,存在从1到8的值,并且列A到J具有样本测量值。任何帮助将不胜感激!
class ViewController: UIViewController {
@IBAction func buttonAction(sender: AnyObject) {
let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .Alert)
let cancelAction = UIAlertAction(title: "OK", style: .Cancel, handler: nil)
alertController.addAction(cancelAction)
presentViewController(alertController, animated: true, completion: nil)
}
}