29D7E020204E72DB00010071/* Assets.xcassets in Resources */={isa=PBXBuildFile;fileRef=29D7E01F204E72DB00010071/* Assets.xcassets */;};
29D7E023204E72DB00010071/* LaunchScreen.storyboard in Resources */={isa=PBXBuildFile;fileRef=29D7E021204E72DB00010071/* LaunchScreen.storyboard */;};
29D7E02B204E738D00010071/* Podfile in Resources */={isa=PBXBuildFile;fileRef=29D7E02A204E738D00010071/* Podfile */;};
29D9E26C2050FB3300E1C3F5/* SpotsResult.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E26B2050FB3200E1C3F5/* SpotsResult.swift */;};
29D9E27020510DED00E1C3F5/* Date+Extensions.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E26F20510DED00E1C3F5/* Date+Extensions.swift */;};
29D9E2722051182900E1C3F5/* Color+Extension.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E2712051182800E1C3F5/* Color+Extension.swift */;};
29D9E27420511E8C00E1C3F5/* DensityResult.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E27320511E8C00E1C3F5/* DensityResult.swift */;};
29D9E27A2051216000E1C3F5/* AxisValueFormatter.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E2792051216000E1C3F5/* AxisValueFormatter.swift */;};
29D9E38C20513A7100E1C3F5/* DetailViewController.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E38B20513A7100E1C3F5/* DetailViewController.swift */;};
29D9E39020513F6500E1C3F5/* UIView+Extension.swift in Sources */={isa=PBXBuildFile;fileRef=29D9E38F20513F6500E1C3F5/* UIView+Extension.swift */;};
8F64F344206CF1B20047402A/* DensityResult.swift in Sources */={isa=PBXBuildFile;fileRef=8F64F342206CF1B20047402A/* DensityResult.swift */;};
8F64F345206CF1B20047402A/* DensityRow.swift in Sources */={isa=PBXBuildFile;fileRef=8F64F343206CF1B20047402A/* DensityRow.swift */;};
8F64F349206CF62F0047402A/* SpotsYesterdayrow.swift in Sources */={isa=PBXBuildFile;fileRef=8F64F347206CF62F0047402A/* SpotsYesterdayrow.swift */;};
8F64F34A206CF62F0047402A/* SpotsResult.swift in Sources */={isa=PBXBuildFile;fileRef=8F64F348206CF62F0047402A/* SpotsResult.swift */;};
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
...
...
@@ -41,14 +43,16 @@
29D7E022204E72DB00010071/* Base */={isa=PBXFileReference;lastKnownFileType=file.storyboard;name=Base;path=Base.lproj/LaunchScreen.storyboard;sourceTree="<group>";};
741C820678A2593F5FCD1236/* Pods-SHZX.debug.xcconfig */={isa=PBXFileReference;includeInIndex=1;lastKnownFileType=text.xcconfig;name="Pods-SHZX.debug.xcconfig";path="Pods/Target Support Files/Pods-SHZX/Pods-SHZX.debug.xcconfig";sourceTree="<group>";};
// Model file generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport
importFoundation
importSwiftyJSON
classDensityResult:NSObject,NSCoding{
varrows:[DensityRow]!
/**
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
rows=[DensityRow]()
letrowsArray=json["rows"].arrayValue
forrowsJsoninrowsArray{
letvalue=DensityRow(fromJson:rowsJson)
rows.append(value)
}
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
// Model file generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport
importFoundation
importSwiftyJSON
classDensityRow:NSObject,NSCoding{
vardevicegroup:String!
vardisplaydensity:String!
varn:String!
/**
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
devicegroup=json["devicegroup"].stringValue
displaydensity=json["displaydensity"].stringValue
n=json["n"].stringValue
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
// Model file generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport
importFoundation
importSwiftyJSON
classSpotsYesterdayrow:NSObject,NSCoding{
varcameradatetime:String!
vardisplayin:Int!
vardisplayout:Int!
/**
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
cameradatetime=json["cameradatetime"].stringValue
displayin=json["displayin"].intValue
displayout=json["displayout"].intValue
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property