We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class Greeting { private var koreanData = "안녕하세요" private var englishData = "Hello" var korean: String { get { return koreanData } set(newValue) { self.koreanData = newValue } } var english: String { get { return englishData } set(newValue) { self.englishData = newValue } } }
open class UIColor : NSObject, NSSecureCoding, NSCopying { //... open class var black: UIColor { get } // 0.0 white open class var darkGray: UIColor { get } // 0.333 white open class var lightGray: UIColor { get } // 0.667 white open class var white: UIColor { get } // 1.0 white open class var gray: UIColor { get } // 0.5 white open class var red: UIColor { get } // 1.0, 0.0, 0.0 RGB open class var green: UIColor { get } // 0.0, 1.0, 0.0 RGB open class var blue: UIColor { get } // 0.0, 0.0, 1.0 RGB open class var cyan: UIColor { get } // 0.0, 1.0, 1.0 RGB open class var yellow: UIColor { get } // 1.0, 1.0, 0.0 RGB open class var magenta: UIColor { get } // 1.0, 0.0, 1.0 RGB open class var orange: UIColor { get } // 1.0, 0.5, 0.0 RGB open class var purple: UIColor { get } // 0.5, 0.0, 0.5 RGB open class var brown: UIColor { get } // 0.6, 0.4, 0.2 RGB open class var clear: UIColor { get } // 0.0 white, 0.0 alpha //... }
참고자료1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
DTO - Data Transfer Object
VO - Value Obejct
참고자료1
The text was updated successfully, but these errors were encountered: