[Add] com-qqsdk-control-Tools 1.2.1
[CocoaPods.git] / Specs / 7 / d / 0 / ATMHud@dhoerl / 3.0.0 / ATMHud@dhoerl.podspec.json
blobcfbe1c90ff4551446752cefe0651bfabddcd566d
2   "name": "ATMHud@dhoerl",
3   "version": "3.0.0",
4   "platforms": {
5     "ios": "7.0"
6   },
7   "license": "BSD",
8   "summary": "Full featured and flexible HUD framework.",
9   "homepage": "https://github.com/dhoerl/ATMHud",
10   "authors": {
11     "Marcel Müller": "pool@atomton.net",
12     "David Hoerl": "david.hoerl+git@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/dhoerl/ATMHud.git",
16     "tag": "3.0.0"
17   },
18   "requires_arc": true,
19   "screenshots": [
20     "https://github.com/dhoerl/ScreenShots/BasicFunctions.png",
21     "https://github.com/dhoerl/ScreenShots/AdvancedFunctions.png",
22     "https://github.com/dhoerl/ScreenShots/SimpleCaption.png",
23     "https://github.com/dhoerl/ScreenShots/Caption+Activity.png",
24     "https://github.com/dhoerl/ScreenShots/JustSpinner.png",
25     "https://github.com/dhoerl/ScreenShots/Caption+ProgressBar.png",
26     "https://github.com/dhoerl/ScreenShots/Caption+ProgressBar_FixedSize"
27   ],
28   "default_subspecs": [
29     "Core"
30   ],
31   "description": "ATMHud offers a versatile and full featured HUD for yuour iOS projects. You can use either a traditional protocol based delegate or a block based one. A Demo app shows how to use most of the feature set and both delegates. You can set any of a caption, two types of progress indicators, and an image to the HUD, which resizes as needed. You can control where the progress indicator goes (top/bot/left/right), the view grayness and cover view's grayness/opacity. If you're showing the HUD with the keyboard up (for example), you can move the HUD's center.\n\nUsage:\n    // Keep a strong ivar reference to it (ie, \"ATMHud *hud\")\n\thud = [ATMHud new]; // using the block delegate\n\t[hud setCaption:@\"Caption and an activity indicator.\"];\n\t[hud setActivity:YES];\n\thud.blockDelegate = ....; // see demo project\n\t[hud showInView:self.view];\n\t...\n\t[hud hide];\n\t//the block delegate can release the hud and nil the ivar (see Demo app)\n\n",
32   "subspecs": [
33     {
34       "name": "Core",
35       "source_files": "ATM*.{h,m}",
36       "exclude_files": "ATMSoundFX.{h,m}",
37       "resources": [
38         "11-x.png",
39         "19-check.png"
40       ],
41       "frameworks": "QuartzCore"
42     },
43     {
44       "name": "WithSound",
45       "source_files": "ATM*.{h,m}",
46       "resources": [
47         "11-x.png",
48         "19-check.png",
49         "pop.wav"
50       ],
51       "frameworks": [
52         "QuartzCore",
53         "AudioToolbox"
54       ],
55       "compiler_flags": "-DATM_SOUND"
56     }
57   ]