├── FlareView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── Dhanalakshmi.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── FlareView.xcscheme │ │ └── xcschememanagement.plist │ └── Stanly.xcuserdatad │ └── xcschemes │ ├── FlareView.xcscheme │ └── xcschememanagement.plist ├── FlareView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── flares │ ├── FlareView.h │ └── FlareView.m ├── heart.png ├── love.png ├── main.m └── star.png ├── FlareViewTests ├── FlareViewTests.m └── Info.plist ├── FlareViewUITests ├── FlareViewUITests.m └── Info.plist ├── README.md └── screenshot └── af86e6ae-acd6-11e6-8191-43786511bb31.gif /FlareView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | E5D2DE581DDD94E3000AC1AA /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2DE571DDD94E3000AC1AA /* main.m */; }; 11 | E5D2DE5B1DDD94E3000AC1AA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2DE5A1DDD94E3000AC1AA /* AppDelegate.m */; }; 12 | E5D2DE5E1DDD94E3000AC1AA /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2DE5D1DDD94E3000AC1AA /* ViewController.m */; }; 13 | E5D2DE611DDD94E3000AC1AA /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E5D2DE5F1DDD94E3000AC1AA /* Main.storyboard */; }; 14 | E5D2DE631DDD94E3000AC1AA /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E5D2DE621DDD94E3000AC1AA /* Assets.xcassets */; }; 15 | E5D2DE661DDD94E3000AC1AA /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E5D2DE641DDD94E3000AC1AA /* LaunchScreen.storyboard */; }; 16 | E5D2DE711DDD94E3000AC1AA /* FlareViewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2DE701DDD94E3000AC1AA /* FlareViewTests.m */; }; 17 | E5D2DE7C1DDD94E3000AC1AA /* FlareViewUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2DE7B1DDD94E3000AC1AA /* FlareViewUITests.m */; }; 18 | E5D2DE8C1DDD9563000AC1AA /* FlareView.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D2DE8B1DDD9563000AC1AA /* FlareView.m */; }; 19 | E5D2DE8F1DDD95D7000AC1AA /* heart.png in Resources */ = {isa = PBXBuildFile; fileRef = E5D2DE8D1DDD95D7000AC1AA /* heart.png */; }; 20 | E5D2DE901DDD95D7000AC1AA /* love.png in Resources */ = {isa = PBXBuildFile; fileRef = E5D2DE8E1DDD95D7000AC1AA /* love.png */; }; 21 | E5D2DE941DDD9AA8000AC1AA /* star.png in Resources */ = {isa = PBXBuildFile; fileRef = E5D2DE931DDD9AA8000AC1AA /* star.png */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | E5D2DE6D1DDD94E3000AC1AA /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = E5D2DE4B1DDD94E3000AC1AA /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = E5D2DE521DDD94E3000AC1AA; 30 | remoteInfo = FlareView; 31 | }; 32 | E5D2DE781DDD94E3000AC1AA /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = E5D2DE4B1DDD94E3000AC1AA /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = E5D2DE521DDD94E3000AC1AA; 37 | remoteInfo = FlareView; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | E5D2DE531DDD94E3000AC1AA /* FlareView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FlareView.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | E5D2DE571DDD94E3000AC1AA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 44 | E5D2DE591DDD94E3000AC1AA /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 45 | E5D2DE5A1DDD94E3000AC1AA /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 46 | E5D2DE5C1DDD94E3000AC1AA /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 47 | E5D2DE5D1DDD94E3000AC1AA /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 48 | E5D2DE601DDD94E3000AC1AA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 49 | E5D2DE621DDD94E3000AC1AA /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 50 | E5D2DE651DDD94E3000AC1AA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 51 | E5D2DE671DDD94E3000AC1AA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | E5D2DE6C1DDD94E3000AC1AA /* FlareViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FlareViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 53 | E5D2DE701DDD94E3000AC1AA /* FlareViewTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FlareViewTests.m; sourceTree = ""; }; 54 | E5D2DE721DDD94E3000AC1AA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 55 | E5D2DE771DDD94E3000AC1AA /* FlareViewUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FlareViewUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | E5D2DE7B1DDD94E3000AC1AA /* FlareViewUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FlareViewUITests.m; sourceTree = ""; }; 57 | E5D2DE7D1DDD94E3000AC1AA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 58 | E5D2DE8A1DDD9563000AC1AA /* FlareView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FlareView.h; path = flares/FlareView.h; sourceTree = ""; }; 59 | E5D2DE8B1DDD9563000AC1AA /* FlareView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FlareView.m; path = flares/FlareView.m; sourceTree = ""; }; 60 | E5D2DE8D1DDD95D7000AC1AA /* heart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = heart.png; sourceTree = ""; }; 61 | E5D2DE8E1DDD95D7000AC1AA /* love.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = love.png; sourceTree = ""; }; 62 | E5D2DE931DDD9AA8000AC1AA /* star.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = star.png; sourceTree = ""; }; 63 | /* End PBXFileReference section */ 64 | 65 | /* Begin PBXFrameworksBuildPhase section */ 66 | E5D2DE501DDD94E3000AC1AA /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | ); 71 | runOnlyForDeploymentPostprocessing = 0; 72 | }; 73 | E5D2DE691DDD94E3000AC1AA /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | ); 78 | runOnlyForDeploymentPostprocessing = 0; 79 | }; 80 | E5D2DE741DDD94E3000AC1AA /* Frameworks */ = { 81 | isa = PBXFrameworksBuildPhase; 82 | buildActionMask = 2147483647; 83 | files = ( 84 | ); 85 | runOnlyForDeploymentPostprocessing = 0; 86 | }; 87 | /* End PBXFrameworksBuildPhase section */ 88 | 89 | /* Begin PBXGroup section */ 90 | E5D2DE4A1DDD94E3000AC1AA = { 91 | isa = PBXGroup; 92 | children = ( 93 | E5D2DE551DDD94E3000AC1AA /* FlareView */, 94 | E5D2DE6F1DDD94E3000AC1AA /* FlareViewTests */, 95 | E5D2DE7A1DDD94E3000AC1AA /* FlareViewUITests */, 96 | E5D2DE541DDD94E3000AC1AA /* Products */, 97 | ); 98 | sourceTree = ""; 99 | }; 100 | E5D2DE541DDD94E3000AC1AA /* Products */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | E5D2DE531DDD94E3000AC1AA /* FlareView.app */, 104 | E5D2DE6C1DDD94E3000AC1AA /* FlareViewTests.xctest */, 105 | E5D2DE771DDD94E3000AC1AA /* FlareViewUITests.xctest */, 106 | ); 107 | name = Products; 108 | sourceTree = ""; 109 | }; 110 | E5D2DE551DDD94E3000AC1AA /* FlareView */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | E5D2DE931DDD9AA8000AC1AA /* star.png */, 114 | E5D2DE8D1DDD95D7000AC1AA /* heart.png */, 115 | E5D2DE8E1DDD95D7000AC1AA /* love.png */, 116 | E5D2DE891DDD9558000AC1AA /* flares */, 117 | E5D2DE591DDD94E3000AC1AA /* AppDelegate.h */, 118 | E5D2DE5A1DDD94E3000AC1AA /* AppDelegate.m */, 119 | E5D2DE5C1DDD94E3000AC1AA /* ViewController.h */, 120 | E5D2DE5D1DDD94E3000AC1AA /* ViewController.m */, 121 | E5D2DE5F1DDD94E3000AC1AA /* Main.storyboard */, 122 | E5D2DE621DDD94E3000AC1AA /* Assets.xcassets */, 123 | E5D2DE641DDD94E3000AC1AA /* LaunchScreen.storyboard */, 124 | E5D2DE671DDD94E3000AC1AA /* Info.plist */, 125 | E5D2DE561DDD94E3000AC1AA /* Supporting Files */, 126 | ); 127 | path = FlareView; 128 | sourceTree = ""; 129 | }; 130 | E5D2DE561DDD94E3000AC1AA /* Supporting Files */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | E5D2DE571DDD94E3000AC1AA /* main.m */, 134 | ); 135 | name = "Supporting Files"; 136 | sourceTree = ""; 137 | }; 138 | E5D2DE6F1DDD94E3000AC1AA /* FlareViewTests */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | E5D2DE701DDD94E3000AC1AA /* FlareViewTests.m */, 142 | E5D2DE721DDD94E3000AC1AA /* Info.plist */, 143 | ); 144 | path = FlareViewTests; 145 | sourceTree = ""; 146 | }; 147 | E5D2DE7A1DDD94E3000AC1AA /* FlareViewUITests */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | E5D2DE7B1DDD94E3000AC1AA /* FlareViewUITests.m */, 151 | E5D2DE7D1DDD94E3000AC1AA /* Info.plist */, 152 | ); 153 | path = FlareViewUITests; 154 | sourceTree = ""; 155 | }; 156 | E5D2DE891DDD9558000AC1AA /* flares */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | E5D2DE8A1DDD9563000AC1AA /* FlareView.h */, 160 | E5D2DE8B1DDD9563000AC1AA /* FlareView.m */, 161 | ); 162 | name = flares; 163 | sourceTree = ""; 164 | }; 165 | /* End PBXGroup section */ 166 | 167 | /* Begin PBXNativeTarget section */ 168 | E5D2DE521DDD94E3000AC1AA /* FlareView */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = E5D2DE801DDD94E3000AC1AA /* Build configuration list for PBXNativeTarget "FlareView" */; 171 | buildPhases = ( 172 | E5D2DE4F1DDD94E3000AC1AA /* Sources */, 173 | E5D2DE501DDD94E3000AC1AA /* Frameworks */, 174 | E5D2DE511DDD94E3000AC1AA /* Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | ); 180 | name = FlareView; 181 | productName = FlareView; 182 | productReference = E5D2DE531DDD94E3000AC1AA /* FlareView.app */; 183 | productType = "com.apple.product-type.application"; 184 | }; 185 | E5D2DE6B1DDD94E3000AC1AA /* FlareViewTests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = E5D2DE831DDD94E3000AC1AA /* Build configuration list for PBXNativeTarget "FlareViewTests" */; 188 | buildPhases = ( 189 | E5D2DE681DDD94E3000AC1AA /* Sources */, 190 | E5D2DE691DDD94E3000AC1AA /* Frameworks */, 191 | E5D2DE6A1DDD94E3000AC1AA /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | E5D2DE6E1DDD94E3000AC1AA /* PBXTargetDependency */, 197 | ); 198 | name = FlareViewTests; 199 | productName = FlareViewTests; 200 | productReference = E5D2DE6C1DDD94E3000AC1AA /* FlareViewTests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | E5D2DE761DDD94E3000AC1AA /* FlareViewUITests */ = { 204 | isa = PBXNativeTarget; 205 | buildConfigurationList = E5D2DE861DDD94E3000AC1AA /* Build configuration list for PBXNativeTarget "FlareViewUITests" */; 206 | buildPhases = ( 207 | E5D2DE731DDD94E3000AC1AA /* Sources */, 208 | E5D2DE741DDD94E3000AC1AA /* Frameworks */, 209 | E5D2DE751DDD94E3000AC1AA /* Resources */, 210 | ); 211 | buildRules = ( 212 | ); 213 | dependencies = ( 214 | E5D2DE791DDD94E3000AC1AA /* PBXTargetDependency */, 215 | ); 216 | name = FlareViewUITests; 217 | productName = FlareViewUITests; 218 | productReference = E5D2DE771DDD94E3000AC1AA /* FlareViewUITests.xctest */; 219 | productType = "com.apple.product-type.bundle.ui-testing"; 220 | }; 221 | /* End PBXNativeTarget section */ 222 | 223 | /* Begin PBXProject section */ 224 | E5D2DE4B1DDD94E3000AC1AA /* Project object */ = { 225 | isa = PBXProject; 226 | attributes = { 227 | LastUpgradeCheck = 0730; 228 | ORGANIZATIONNAME = Dhanalakshmi; 229 | TargetAttributes = { 230 | E5D2DE521DDD94E3000AC1AA = { 231 | CreatedOnToolsVersion = 7.3.1; 232 | }; 233 | E5D2DE6B1DDD94E3000AC1AA = { 234 | CreatedOnToolsVersion = 7.3.1; 235 | TestTargetID = E5D2DE521DDD94E3000AC1AA; 236 | }; 237 | E5D2DE761DDD94E3000AC1AA = { 238 | CreatedOnToolsVersion = 7.3.1; 239 | TestTargetID = E5D2DE521DDD94E3000AC1AA; 240 | }; 241 | }; 242 | }; 243 | buildConfigurationList = E5D2DE4E1DDD94E3000AC1AA /* Build configuration list for PBXProject "FlareView" */; 244 | compatibilityVersion = "Xcode 3.2"; 245 | developmentRegion = English; 246 | hasScannedForEncodings = 0; 247 | knownRegions = ( 248 | en, 249 | Base, 250 | ); 251 | mainGroup = E5D2DE4A1DDD94E3000AC1AA; 252 | productRefGroup = E5D2DE541DDD94E3000AC1AA /* Products */; 253 | projectDirPath = ""; 254 | projectRoot = ""; 255 | targets = ( 256 | E5D2DE521DDD94E3000AC1AA /* FlareView */, 257 | E5D2DE6B1DDD94E3000AC1AA /* FlareViewTests */, 258 | E5D2DE761DDD94E3000AC1AA /* FlareViewUITests */, 259 | ); 260 | }; 261 | /* End PBXProject section */ 262 | 263 | /* Begin PBXResourcesBuildPhase section */ 264 | E5D2DE511DDD94E3000AC1AA /* Resources */ = { 265 | isa = PBXResourcesBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | E5D2DE8F1DDD95D7000AC1AA /* heart.png in Resources */, 269 | E5D2DE901DDD95D7000AC1AA /* love.png in Resources */, 270 | E5D2DE661DDD94E3000AC1AA /* LaunchScreen.storyboard in Resources */, 271 | E5D2DE631DDD94E3000AC1AA /* Assets.xcassets in Resources */, 272 | E5D2DE611DDD94E3000AC1AA /* Main.storyboard in Resources */, 273 | E5D2DE941DDD9AA8000AC1AA /* star.png in Resources */, 274 | ); 275 | runOnlyForDeploymentPostprocessing = 0; 276 | }; 277 | E5D2DE6A1DDD94E3000AC1AA /* Resources */ = { 278 | isa = PBXResourcesBuildPhase; 279 | buildActionMask = 2147483647; 280 | files = ( 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | E5D2DE751DDD94E3000AC1AA /* Resources */ = { 285 | isa = PBXResourcesBuildPhase; 286 | buildActionMask = 2147483647; 287 | files = ( 288 | ); 289 | runOnlyForDeploymentPostprocessing = 0; 290 | }; 291 | /* End PBXResourcesBuildPhase section */ 292 | 293 | /* Begin PBXSourcesBuildPhase section */ 294 | E5D2DE4F1DDD94E3000AC1AA /* Sources */ = { 295 | isa = PBXSourcesBuildPhase; 296 | buildActionMask = 2147483647; 297 | files = ( 298 | E5D2DE5E1DDD94E3000AC1AA /* ViewController.m in Sources */, 299 | E5D2DE5B1DDD94E3000AC1AA /* AppDelegate.m in Sources */, 300 | E5D2DE581DDD94E3000AC1AA /* main.m in Sources */, 301 | E5D2DE8C1DDD9563000AC1AA /* FlareView.m in Sources */, 302 | ); 303 | runOnlyForDeploymentPostprocessing = 0; 304 | }; 305 | E5D2DE681DDD94E3000AC1AA /* Sources */ = { 306 | isa = PBXSourcesBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | E5D2DE711DDD94E3000AC1AA /* FlareViewTests.m in Sources */, 310 | ); 311 | runOnlyForDeploymentPostprocessing = 0; 312 | }; 313 | E5D2DE731DDD94E3000AC1AA /* Sources */ = { 314 | isa = PBXSourcesBuildPhase; 315 | buildActionMask = 2147483647; 316 | files = ( 317 | E5D2DE7C1DDD94E3000AC1AA /* FlareViewUITests.m in Sources */, 318 | ); 319 | runOnlyForDeploymentPostprocessing = 0; 320 | }; 321 | /* End PBXSourcesBuildPhase section */ 322 | 323 | /* Begin PBXTargetDependency section */ 324 | E5D2DE6E1DDD94E3000AC1AA /* PBXTargetDependency */ = { 325 | isa = PBXTargetDependency; 326 | target = E5D2DE521DDD94E3000AC1AA /* FlareView */; 327 | targetProxy = E5D2DE6D1DDD94E3000AC1AA /* PBXContainerItemProxy */; 328 | }; 329 | E5D2DE791DDD94E3000AC1AA /* PBXTargetDependency */ = { 330 | isa = PBXTargetDependency; 331 | target = E5D2DE521DDD94E3000AC1AA /* FlareView */; 332 | targetProxy = E5D2DE781DDD94E3000AC1AA /* PBXContainerItemProxy */; 333 | }; 334 | /* End PBXTargetDependency section */ 335 | 336 | /* Begin PBXVariantGroup section */ 337 | E5D2DE5F1DDD94E3000AC1AA /* Main.storyboard */ = { 338 | isa = PBXVariantGroup; 339 | children = ( 340 | E5D2DE601DDD94E3000AC1AA /* Base */, 341 | ); 342 | name = Main.storyboard; 343 | sourceTree = ""; 344 | }; 345 | E5D2DE641DDD94E3000AC1AA /* LaunchScreen.storyboard */ = { 346 | isa = PBXVariantGroup; 347 | children = ( 348 | E5D2DE651DDD94E3000AC1AA /* Base */, 349 | ); 350 | name = LaunchScreen.storyboard; 351 | sourceTree = ""; 352 | }; 353 | /* End PBXVariantGroup section */ 354 | 355 | /* Begin XCBuildConfiguration section */ 356 | E5D2DE7E1DDD94E3000AC1AA /* Debug */ = { 357 | isa = XCBuildConfiguration; 358 | buildSettings = { 359 | ALWAYS_SEARCH_USER_PATHS = NO; 360 | CLANG_ANALYZER_NONNULL = YES; 361 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 362 | CLANG_CXX_LIBRARY = "libc++"; 363 | CLANG_ENABLE_MODULES = YES; 364 | CLANG_ENABLE_OBJC_ARC = YES; 365 | CLANG_WARN_BOOL_CONVERSION = YES; 366 | CLANG_WARN_CONSTANT_CONVERSION = YES; 367 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 368 | CLANG_WARN_EMPTY_BODY = YES; 369 | CLANG_WARN_ENUM_CONVERSION = YES; 370 | CLANG_WARN_INT_CONVERSION = YES; 371 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 372 | CLANG_WARN_UNREACHABLE_CODE = YES; 373 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 374 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 375 | COPY_PHASE_STRIP = NO; 376 | DEBUG_INFORMATION_FORMAT = dwarf; 377 | ENABLE_STRICT_OBJC_MSGSEND = YES; 378 | ENABLE_TESTABILITY = YES; 379 | GCC_C_LANGUAGE_STANDARD = gnu99; 380 | GCC_DYNAMIC_NO_PIC = NO; 381 | GCC_NO_COMMON_BLOCKS = YES; 382 | GCC_OPTIMIZATION_LEVEL = 0; 383 | GCC_PREPROCESSOR_DEFINITIONS = ( 384 | "DEBUG=1", 385 | "$(inherited)", 386 | ); 387 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 388 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 389 | GCC_WARN_UNDECLARED_SELECTOR = YES; 390 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 391 | GCC_WARN_UNUSED_FUNCTION = YES; 392 | GCC_WARN_UNUSED_VARIABLE = YES; 393 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 394 | MTL_ENABLE_DEBUG_INFO = YES; 395 | ONLY_ACTIVE_ARCH = YES; 396 | SDKROOT = iphoneos; 397 | TARGETED_DEVICE_FAMILY = "1,2"; 398 | }; 399 | name = Debug; 400 | }; 401 | E5D2DE7F1DDD94E3000AC1AA /* Release */ = { 402 | isa = XCBuildConfiguration; 403 | buildSettings = { 404 | ALWAYS_SEARCH_USER_PATHS = NO; 405 | CLANG_ANALYZER_NONNULL = YES; 406 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 407 | CLANG_CXX_LIBRARY = "libc++"; 408 | CLANG_ENABLE_MODULES = YES; 409 | CLANG_ENABLE_OBJC_ARC = YES; 410 | CLANG_WARN_BOOL_CONVERSION = YES; 411 | CLANG_WARN_CONSTANT_CONVERSION = YES; 412 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 413 | CLANG_WARN_EMPTY_BODY = YES; 414 | CLANG_WARN_ENUM_CONVERSION = YES; 415 | CLANG_WARN_INT_CONVERSION = YES; 416 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 417 | CLANG_WARN_UNREACHABLE_CODE = YES; 418 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 420 | COPY_PHASE_STRIP = NO; 421 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 422 | ENABLE_NS_ASSERTIONS = NO; 423 | ENABLE_STRICT_OBJC_MSGSEND = YES; 424 | GCC_C_LANGUAGE_STANDARD = gnu99; 425 | GCC_NO_COMMON_BLOCKS = YES; 426 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 427 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 428 | GCC_WARN_UNDECLARED_SELECTOR = YES; 429 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 430 | GCC_WARN_UNUSED_FUNCTION = YES; 431 | GCC_WARN_UNUSED_VARIABLE = YES; 432 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 433 | MTL_ENABLE_DEBUG_INFO = NO; 434 | SDKROOT = iphoneos; 435 | TARGETED_DEVICE_FAMILY = "1,2"; 436 | VALIDATE_PRODUCT = YES; 437 | }; 438 | name = Release; 439 | }; 440 | E5D2DE811DDD94E3000AC1AA /* Debug */ = { 441 | isa = XCBuildConfiguration; 442 | buildSettings = { 443 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 444 | INFOPLIST_FILE = FlareView/Info.plist; 445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 446 | PRODUCT_BUNDLE_IDENTIFIER = com.FlareView; 447 | PRODUCT_NAME = "$(TARGET_NAME)"; 448 | }; 449 | name = Debug; 450 | }; 451 | E5D2DE821DDD94E3000AC1AA /* Release */ = { 452 | isa = XCBuildConfiguration; 453 | buildSettings = { 454 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 455 | INFOPLIST_FILE = FlareView/Info.plist; 456 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 457 | PRODUCT_BUNDLE_IDENTIFIER = com.FlareView; 458 | PRODUCT_NAME = "$(TARGET_NAME)"; 459 | }; 460 | name = Release; 461 | }; 462 | E5D2DE841DDD94E3000AC1AA /* Debug */ = { 463 | isa = XCBuildConfiguration; 464 | buildSettings = { 465 | BUNDLE_LOADER = "$(TEST_HOST)"; 466 | INFOPLIST_FILE = FlareViewTests/Info.plist; 467 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 468 | PRODUCT_BUNDLE_IDENTIFIER = vom.FlareViewTests; 469 | PRODUCT_NAME = "$(TARGET_NAME)"; 470 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FlareView.app/FlareView"; 471 | }; 472 | name = Debug; 473 | }; 474 | E5D2DE851DDD94E3000AC1AA /* Release */ = { 475 | isa = XCBuildConfiguration; 476 | buildSettings = { 477 | BUNDLE_LOADER = "$(TEST_HOST)"; 478 | INFOPLIST_FILE = FlareViewTests/Info.plist; 479 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 480 | PRODUCT_BUNDLE_IDENTIFIER = vom.FlareViewTests; 481 | PRODUCT_NAME = "$(TARGET_NAME)"; 482 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FlareView.app/FlareView"; 483 | }; 484 | name = Release; 485 | }; 486 | E5D2DE871DDD94E3000AC1AA /* Debug */ = { 487 | isa = XCBuildConfiguration; 488 | buildSettings = { 489 | INFOPLIST_FILE = FlareViewUITests/Info.plist; 490 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 491 | PRODUCT_BUNDLE_IDENTIFIER = vom.FlareViewUITests; 492 | PRODUCT_NAME = "$(TARGET_NAME)"; 493 | TEST_TARGET_NAME = FlareView; 494 | }; 495 | name = Debug; 496 | }; 497 | E5D2DE881DDD94E3000AC1AA /* Release */ = { 498 | isa = XCBuildConfiguration; 499 | buildSettings = { 500 | INFOPLIST_FILE = FlareViewUITests/Info.plist; 501 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 502 | PRODUCT_BUNDLE_IDENTIFIER = vom.FlareViewUITests; 503 | PRODUCT_NAME = "$(TARGET_NAME)"; 504 | TEST_TARGET_NAME = FlareView; 505 | }; 506 | name = Release; 507 | }; 508 | /* End XCBuildConfiguration section */ 509 | 510 | /* Begin XCConfigurationList section */ 511 | E5D2DE4E1DDD94E3000AC1AA /* Build configuration list for PBXProject "FlareView" */ = { 512 | isa = XCConfigurationList; 513 | buildConfigurations = ( 514 | E5D2DE7E1DDD94E3000AC1AA /* Debug */, 515 | E5D2DE7F1DDD94E3000AC1AA /* Release */, 516 | ); 517 | defaultConfigurationIsVisible = 0; 518 | defaultConfigurationName = Release; 519 | }; 520 | E5D2DE801DDD94E3000AC1AA /* Build configuration list for PBXNativeTarget "FlareView" */ = { 521 | isa = XCConfigurationList; 522 | buildConfigurations = ( 523 | E5D2DE811DDD94E3000AC1AA /* Debug */, 524 | E5D2DE821DDD94E3000AC1AA /* Release */, 525 | ); 526 | defaultConfigurationIsVisible = 0; 527 | }; 528 | E5D2DE831DDD94E3000AC1AA /* Build configuration list for PBXNativeTarget "FlareViewTests" */ = { 529 | isa = XCConfigurationList; 530 | buildConfigurations = ( 531 | E5D2DE841DDD94E3000AC1AA /* Debug */, 532 | E5D2DE851DDD94E3000AC1AA /* Release */, 533 | ); 534 | defaultConfigurationIsVisible = 0; 535 | }; 536 | E5D2DE861DDD94E3000AC1AA /* Build configuration list for PBXNativeTarget "FlareViewUITests" */ = { 537 | isa = XCConfigurationList; 538 | buildConfigurations = ( 539 | E5D2DE871DDD94E3000AC1AA /* Debug */, 540 | E5D2DE881DDD94E3000AC1AA /* Release */, 541 | ); 542 | defaultConfigurationIsVisible = 0; 543 | }; 544 | /* End XCConfigurationList section */ 545 | }; 546 | rootObject = E5D2DE4B1DDD94E3000AC1AA /* Project object */; 547 | } 548 | -------------------------------------------------------------------------------- /FlareView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcschemes/FlareView.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 43 | 49 | 50 | 51 | 52 | 53 | 59 | 60 | 61 | 62 | 63 | 64 | 74 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | FlareView.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | E5D2DE521DDD94E3000AC1AA 16 | 17 | primary 18 | 19 | 20 | E5D2DE6B1DDD94E3000AC1AA 21 | 22 | primary 23 | 24 | 25 | E5D2DE761DDD94E3000AC1AA 26 | 27 | primary 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Stanly.xcuserdatad/xcschemes/FlareView.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 43 | 49 | 50 | 51 | 52 | 53 | 59 | 60 | 61 | 62 | 63 | 64 | 74 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Stanly.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | FlareView.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | E5D2DE521DDD94E3000AC1AA 16 | 17 | primary 18 | 19 | 20 | E5D2DE6B1DDD94E3000AC1AA 21 | 22 | primary 23 | 24 | 25 | E5D2DE761DDD94E3000AC1AA 26 | 27 | primary 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /FlareView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import 25 | 26 | @interface AppDelegate : UIResponder 27 | 28 | @property (strong, nonatomic) UIWindow *window; 29 | 30 | 31 | @end 32 | 33 | -------------------------------------------------------------------------------- /FlareView/AppDelegate.m: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import "AppDelegate.h" 25 | 26 | @interface AppDelegate () 27 | 28 | @end 29 | 30 | @implementation AppDelegate 31 | 32 | 33 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 34 | // Override point for customization after application launch. 35 | return YES; 36 | } 37 | 38 | - (void)applicationWillResignActive:(UIApplication *)application { 39 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 40 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 41 | } 42 | 43 | - (void)applicationDidEnterBackground:(UIApplication *)application { 44 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 45 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 46 | } 47 | 48 | - (void)applicationWillEnterForeground:(UIApplication *)application { 49 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 50 | } 51 | 52 | - (void)applicationDidBecomeActive:(UIApplication *)application { 53 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 54 | } 55 | 56 | - (void)applicationWillTerminate:(UIApplication *)application { 57 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 58 | } 59 | 60 | @end 61 | -------------------------------------------------------------------------------- /FlareView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /FlareView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /FlareView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 27 | 34 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /FlareView/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /FlareView/ViewController.h: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import 25 | #import "FlareView.h" 26 | @interface ViewController : UIViewController 27 | 28 | @property (weak, nonatomic) IBOutlet UIButton *smiley; 29 | @property (weak, nonatomic) IBOutlet UIButton *heart; 30 | @property (weak, nonatomic) IBOutlet UIButton *star; 31 | 32 | @end 33 | 34 | -------------------------------------------------------------------------------- /FlareView/ViewController.m: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import "ViewController.h" 25 | 26 | @interface ViewController () 27 | 28 | @end 29 | 30 | @implementation ViewController 31 | 32 | - (void)viewDidLoad { 33 | [super viewDidLoad]; 34 | // Do any additional setup after loading the view, typically from a nib. 35 | } 36 | 37 | - (void)didReceiveMemoryWarning { 38 | [super didReceiveMemoryWarning]; 39 | // Dispose of any resources that can be recreated. 40 | } 41 | - (IBAction)didTappedSmiley:(id)sender { 42 | [[FlareView sharedCenter]flarify:self.smiley inParentView:self.view withColor:[UIColor yellowColor]]; 43 | } 44 | - (IBAction)didTappedHeart:(id)sender { 45 | [[FlareView sharedCenter]flarify:self.heart inParentView:self.view withColor:[UIColor redColor]]; 46 | 47 | } 48 | - (IBAction)didTappedStar:(id)sender { 49 | [[FlareView sharedCenter]flarify:self.star inParentView:self.view withColor:[UIColor blueColor]]; 50 | } 51 | 52 | 53 | 54 | @end 55 | -------------------------------------------------------------------------------- /FlareView/flares/FlareView.h: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import 25 | #import 26 | @interface FlareView : NSObject 27 | { 28 | UIColor *flareColor; 29 | 30 | } 31 | + (FlareView *)sharedCenter; 32 | -(void) flarify: (UIView* ) chilView inParentView:(UIView*) rootView withColor : (UIColor *)fillColor; 33 | @end 34 | -------------------------------------------------------------------------------- /FlareView/flares/FlareView.m: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import "FlareView.h" 25 | 26 | @implementation FlareView 27 | 28 | static FlareView *sharedFlareViewCenter = nil; 29 | 30 | + (FlareView *)sharedCenter { 31 | static dispatch_once_t onceToken; 32 | dispatch_once(&onceToken, ^{ // make sure sharedCenter has been initialed once in a life time 33 | if (!sharedFlareViewCenter) { 34 | sharedFlareViewCenter = [[super allocWithZone:NULL] init]; 35 | } 36 | }); 37 | return sharedFlareViewCenter; 38 | } 39 | 40 | -(void) flarify: (UIView* ) chilView inParentView:(UIView*) rootView withColor : (UIColor *)fillColor { 41 | 42 | chilView.userInteractionEnabled = NO; // prevent user presses continuously 43 | flareColor = fillColor; 44 | chilView.transform = CGAffineTransformMakeTranslation(0, 20); 45 | [UIView animateWithDuration:0.4 delay:0.0 usingSpringWithDamping:0.2 initialSpringVelocity:1.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{ 46 | chilView.transform = CGAffineTransformMakeScale(0.01, 0.01); 47 | 48 | } completion:^(BOOL finished){ 49 | UIView* vortexView = [[UIView alloc] initWithFrame:CGRectMake(chilView.frame.origin.x, chilView.frame.origin.y, chilView.frame.size.width, chilView.frame.size.height)]; 50 | 51 | CAShapeLayer *vortexLayer = [CAShapeLayer layer]; 52 | vortexView.bounds = chilView.bounds; 53 | //set colors 54 | [vortexLayer setStrokeColor:[flareColor CGColor]]; 55 | [vortexLayer setFillColor:[[UIColor clearColor] CGColor]]; 56 | [vortexLayer setPath:[[UIBezierPath bezierPathWithOvalInRect:vortexView.bounds] CGPath]]; 57 | [vortexView.layer addSublayer:vortexLayer]; 58 | [rootView addSubview:vortexView]; 59 | 60 | //Animate circle 61 | [vortexView setTransform:CGAffineTransformMakeScale(0, 0)]; 62 | [UIView animateWithDuration:1 animations:^{ 63 | [vortexView setTransform:CGAffineTransformMakeScale(1.3, 1.3)]; 64 | } completion:^(BOOL finished) { 65 | vortexView.hidden = YES; 66 | //start next animation 67 | [self createFlares:chilView rootView:rootView]; 68 | }]; 69 | 70 | }]; 71 | 72 | } 73 | 74 | -(void) createFlares: (UIView*) chilView rootView: (UIView *) rootView{ 75 | 76 | 77 | [chilView setTransform:CGAffineTransformMakeScale(0, 0)]; 78 | //animate icon 79 | [UIView animateWithDuration:0.3/1.5 animations:^{ 80 | chilView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1); 81 | } completion:^(BOOL finished) { 82 | [UIView animateWithDuration:0.3/2 animations:^{ 83 | chilView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.9, 0.9); 84 | } completion:^(BOOL finished) { 85 | [UIView animateWithDuration:0.3/2 animations:^{ 86 | chilView.transform = CGAffineTransformIdentity; 87 | }]; 88 | }]; 89 | }]; 90 | 91 | 92 | //add circles around the icon 93 | int numberOfFlares = 20; 94 | CGPoint center = chilView.center; 95 | float radius= 55; 96 | BOOL isBurlyFlare = YES;; 97 | 98 | for (int i = 0; i r = radius; t= M_PI/numberOfCircles*i*2; j = center.x 101 | //y(t) = r sin(t) + j => r = radius; t= M_PI/numberOfCircles*i*2; j = center.y 102 | 103 | 104 | float x = radius*cos(M_PI/numberOfFlares*i*2) + center.x; 105 | float y = radius*sin(M_PI/numberOfFlares*i*2) + center.y; 106 | 107 | float circleRadius = 10; 108 | if (isBurlyFlare) { 109 | circleRadius = 5; 110 | isBurlyFlare = NO; 111 | }else{ 112 | isBurlyFlare = YES; 113 | } 114 | 115 | UIView* vortexView = [[UIView alloc] initWithFrame:CGRectMake(x, y, circleRadius, circleRadius)]; 116 | CAShapeLayer *circleLayer = [CAShapeLayer layer]; 117 | [circleLayer setStrokeColor:[flareColor CGColor]]; 118 | [circleLayer setFillColor:[flareColor CGColor]]; 119 | [circleLayer setPath:[[UIBezierPath bezierPathWithOvalInRect:vortexView.bounds] CGPath]]; 120 | [vortexView.layer addSublayer:circleLayer]; 121 | [rootView addSubview:vortexView]; 122 | 123 | //animate circles 124 | [UIView animateWithDuration:0.8 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{ 125 | [vortexView setTransform:CGAffineTransformMakeTranslation(radius/3*cos(M_PI/numberOfFlares*i*2), radius/3*sin(M_PI/numberOfFlares*i*2))]; 126 | [vortexView setTransform:CGAffineTransformScale(vortexView.transform, 0.01, 0.01)]; 127 | } completion:^(BOOL finished) { 128 | [vortexView setTransform:CGAffineTransformMakeScale(0, 0)]; 129 | [UIView animateWithDuration:0.2 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{ 130 | // animate it to the identity transform (100% scale) 131 | chilView.transform = CGAffineTransformIdentity; 132 | } completion:^(BOOL finished){ 133 | // if you want to do something once the animation finishes, put it here 134 | chilView.userInteractionEnabled = YES; 135 | }]; 136 | }]; 137 | 138 | 139 | } 140 | } 141 | @end 142 | -------------------------------------------------------------------------------- /FlareView/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/3d3743e9a247b5036a74bf6d6362cebe2d8886e2/FlareView/heart.png -------------------------------------------------------------------------------- /FlareView/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/3d3743e9a247b5036a74bf6d6362cebe2d8886e2/FlareView/love.png -------------------------------------------------------------------------------- /FlareView/main.m: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import 25 | #import "AppDelegate.h" 26 | 27 | int main(int argc, char * argv[]) { 28 | @autoreleasepool { 29 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /FlareView/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/3d3743e9a247b5036a74bf6d6362cebe2d8886e2/FlareView/star.png -------------------------------------------------------------------------------- /FlareViewTests/FlareViewTests.m: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import 25 | 26 | @interface FlareViewTests : XCTestCase 27 | 28 | @end 29 | 30 | @implementation FlareViewTests 31 | 32 | - (void)setUp { 33 | [super setUp]; 34 | // Put setup code here. This method is called before the invocation of each test method in the class. 35 | } 36 | 37 | - (void)tearDown { 38 | // Put teardown code here. This method is called after the invocation of each test method in the class. 39 | [super tearDown]; 40 | } 41 | 42 | - (void)testExample { 43 | // This is an example of a functional test case. 44 | // Use XCTAssert and related functions to verify your tests produce the correct results. 45 | } 46 | 47 | - (void)testPerformanceExample { 48 | // This is an example of a performance test case. 49 | [self measureBlock:^{ 50 | // Put the code you want to measure the time of here. 51 | }]; 52 | } 53 | 54 | @end 55 | -------------------------------------------------------------------------------- /FlareViewTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /FlareViewUITests/FlareViewUITests.m: -------------------------------------------------------------------------------- 1 | //The MIT License (MIT) 2 | // 3 | //Copyright (c) 2016 Stanly Moses 4 | // 5 | //Permission is hereby granted, free of charge, to any person obtaining a copy 6 | //of this software and associated documentation files (the "Software"), to deal 7 | //in the Software without restriction, including without limitation the rights 8 | //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | //copies of the Software, and to permit persons to whom the Software is 10 | //furnished to do so, subject to the following conditions: 11 | // 12 | //The above copyright notice and this permission notice shall be included in all 13 | //copies or substantial portions of the Software. 14 | // 15 | //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | //SOFTWARE. 22 | 23 | 24 | #import 25 | 26 | @interface FlareViewUITests : XCTestCase 27 | 28 | @end 29 | 30 | @implementation FlareViewUITests 31 | 32 | - (void)setUp { 33 | [super setUp]; 34 | 35 | // Put setup code here. This method is called before the invocation of each test method in the class. 36 | 37 | // In UI tests it is usually best to stop immediately when a failure occurs. 38 | self.continueAfterFailure = NO; 39 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 40 | [[[XCUIApplication alloc] init] launch]; 41 | 42 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 43 | } 44 | 45 | - (void)tearDown { 46 | // Put teardown code here. This method is called after the invocation of each test method in the class. 47 | [super tearDown]; 48 | } 49 | 50 | - (void)testExample { 51 | // Use recording to get started writing UI tests. 52 | // Use XCTAssert and related functions to verify your tests produce the correct results. 53 | } 54 | 55 | @end 56 | -------------------------------------------------------------------------------- /FlareViewUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FlareView 2 | 3 | > Spice up your app UIView's by adding magical flares around any UIView's. 4 | 5 | [![Objectivec Version][objectivec-image]][objectivec-url] 6 | [![Build Status][travis-image]][travis-url] 7 | [![License][license-image]][license-url] 8 | [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/EZSwiftExtensions.svg)](https://img.shields.io/cocoapods/v/LFAlertController.svg) 9 | [![Platform](https://img.shields.io/cocoapods/p/LFAlertController.svg?style=flat)](http://cocoapods.org/pods/LFAlertController) 10 | 11 | Have you ever thought of making your user interface by adding magical flares when the user interacts with your app? Use this library if you wanna do so... 12 | 13 | ![screen shot](https://cloud.githubusercontent.com/assets/14089959/20383662/af86e6ae-acd6-11e6-8191-43786511bb31.gif) 14 | 15 | ## Features 16 | 17 | - [x] All UIView's that's enclosed within a parent view can be flarified without any exception. 18 | - [x] You can customize the flare colours as per your own requirement 19 | 20 | ## Requirements 21 | 22 | - iOS 8.0+ 23 | - Xcode 7.3 24 | 25 | ## Installation 26 | 27 | #### CocoaPods 28 | You can use [CocoaPods](http://cocoapods.org/) to install `Flareview` by adding it to your `Podfile`: 29 | 30 | ```ruby 31 | platform :ios, '8.0' 32 | use_frameworks! 33 | pod 'flareview', '~> 0.1' 34 | ``` 35 | 36 | To get the full benefits import `FlareView/FlareView.h` wherever you import UIKit 37 | 38 | ``` objective-c 39 | import UIKit 40 | #import 41 | ``` 42 | 43 | #### Manually 44 | 1. Download and drop ```FlareView.h``` and ```FlareView.m``` in your project. 45 | 2. Congratulations! 46 | 47 | ## Usage example 48 | 49 | ```objective-c 50 | #import 51 | - (void)viewDidLoad { 52 | [super viewDidLoad]; 53 | [[FlareView sharedCenter]flarify:self.smiley inParentView:self.view withColor:[UIColor yellowColor]]; 54 | } 55 | ``` 56 | 57 | ## Contribute 58 | 59 | I would love for you to contribute to **FlareView**, check the ``LICENSE`` file for more info. 60 | 61 | ## Meta 62 | 63 | Stanly Moses – [@Linkedin](https://in.linkedin.com/in/stanlymoses) – stanlimoses@gmail.com 64 | 65 | Distributed under the MIT license. See ``LICENSE`` for more information. 66 | 67 | [https://github.com/StanlyHardy/FlareView](https://github.com/StanlyHardy/) 68 | 69 | [objectivec-image]:https://img.shields.io/badge/Language-Objective%20C-blue.svg?style=flat 70 | [objectivec-url]: https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/Introduction/Introduction.html 71 | [travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square 72 | [travis-url]: https://travis-ci.org/dbader/node-datadog-metrics 73 | [license-image]: https://img.shields.io/badge/License-MIT-blue.svg 74 | [license-url]: LICENSE 75 | [codebeat-image]: https://codebeat.co/badges/c19b47ea-2f9d-45df-8458-b2d952fe9dad 76 | [codebeat-url]: https://codebeat.co/projects/github-com-vsouza-awesomeios-com 77 | -------------------------------------------------------------------------------- /screenshot/af86e6ae-acd6-11e6-8191-43786511bb31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/3d3743e9a247b5036a74bf6d6362cebe2d8886e2/screenshot/af86e6ae-acd6-11e6-8191-43786511bb31.gif --------------------------------------------------------------------------------