TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by yashigani.
Stop-Walking-iPhone is a library that showing warning on app when texting while walking with iPhone.
[SWIManager.sharedManager start];
[SWIManager.sharedManager stop];
Using Stop texting while walking.
key to localize.
Add value for Stop texting while walking.
to Localizable.strings
file on your project.
"Stop texting while walking." = "歩きスマホはやめましょう";
If want to use another key, set localized string to text
property.
SWIManager.sharedManager.text = NSLocalizableString(@"Stop", nil);
Set image
property.
SWIManager.sharedManager.image = ... // set your original image
UIView *customWarning = ...
SWIManager.sharedmanager.warningView = customWarning;
// if you want to show 5 seconds after handled walking
SWIManager.sharedmanager.seconds = 5;
kSWIManagerWarningDidShowNotificaiton
SWIManager
did show warning. Stop your application if needed.
kSWIManagerWarningDidHideNotificaiton
.
SWIManager
did hide warning. Restart your application if needed.
Drag and Drop Stop-Walking-iPhone
directory to your project.
MIT Licene
Copyright (c) 2013 Taiki Fukui
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.