在Swift函数之外使用变量

问题描述 投票:0回答:1

我正在尝试访问函数外部的变量。我正在关注别人在做什么,但没有运气。

感谢您的任何帮助!

// Declare variable at controller level
var photo = ""

// Inside of one function
let photoRef = storageRef.child(imageName)        
var photo = storageRef.child(imageName)
print(photo, "P1") // This works 

// Separate function 
print(photo, "P2") // Does not work 


swift xcode variables
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.