We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05a4536 commit fceac2bCopy full SHA for fceac2b
Sources/PBXBuildStyle.swift
@@ -17,7 +17,14 @@ public class PBXBuildStyle: PBXProjectItem {
17
#if LAZY
18
public lazy var buildSettings: [String: Any]? = dictionary(PBXKeys.buildSettings)
19
#else
20
- public var buildSettings: [String: Any]? { dictionary(PBXKeys.buildSettings) }
+ public var buildSettings: [String: Any]? {
21
+ get {
22
+ dictionary(PBXKeys.buildSettings)
23
+ }
24
+ set {
25
+ self.fields[PBXKeys.buildSettings.rawValue] = newValue
26
27
28
#endif
29
30
}
0 commit comments