All Projects → inaka → Galgo Ios

inaka / Galgo Ios

Licence: apache-2.0
When you want your logs to be displayed on screen

Projects that are alternatives of or similar to Galgo Ios

M3u8
Parser and generator of M3U8-playlists for Apple HLS. Library for Go language. 🎦
Stars: ✭ 800 (+4900%)
Mutual labels:  library
Tfidf
Simple TF IDF Library
Stars: ✭ 6 (-62.5%)
Mutual labels:  library
Realm Core
Core database component for the Realm Mobile Database SDKs
Stars: ✭ 836 (+5125%)
Mutual labels:  library
Morph Bottom Navigation
This library represents a Bottom Navigation with an awesome morph effect on top of the selected item
Stars: ✭ 803 (+4918.75%)
Mutual labels:  library
Cup
CUP, common useful python-lib. (Currently, Most popular python lib in baidu)
Stars: ✭ 826 (+5062.5%)
Mutual labels:  library
System.js
The library System.js designed to improve the quality of writing JavaScript source code. It contains features that allow you refactor source code. Thanks to the clear and readable functions, the code will be good understood and supported accordingly.
Stars: ✭ 6 (-62.5%)
Mutual labels:  library
Yasumi
The easy PHP Library for calculating holidays
Stars: ✭ 788 (+4825%)
Mutual labels:  library
Elongation Preview
ElongationPreview is an elegant UI push-pop style view controller. iOS library made by @Ramotion
Stars: ✭ 888 (+5450%)
Mutual labels:  library
Rulerz
Powerful implementation of the Specification pattern in PHP
Stars: ✭ 827 (+5068.75%)
Mutual labels:  library
Greedo Layout For Ios
Full aspect ratio grid layout for iOS
Stars: ✭ 837 (+5131.25%)
Mutual labels:  library
Swipeablecard
A simple implementation of swipe card like StreetView
Stars: ✭ 812 (+4975%)
Mutual labels:  library
Devtools
The Hoa\Devtools library.
Stars: ✭ 5 (-68.75%)
Mutual labels:  library
Sumologic Python
Sumologic's python api library
Stars: ✭ 6 (-62.5%)
Mutual labels:  library
Vlany
Linux LD_PRELOAD rootkit (x86 and x86_64 architectures)
Stars: ✭ 804 (+4925%)
Mutual labels:  library
Storagedb
MongoDB-like API for HTML5 Storage (localStorage and sessionStorage)
Stars: ✭ 16 (+0%)
Mutual labels:  library
Slim.js
Fast & Robust Front-End Micro-framework based on modern standards
Stars: ✭ 789 (+4831.25%)
Mutual labels:  library
Experiment
🔬 Elixir Library for carefully refactoring critical paths by performing experiments.
Stars: ✭ 6 (-62.5%)
Mutual labels:  library
Shpref Library
💾 Android Kotlin library. Shared preferences wrapper. (2020)
Stars: ✭ 16 (+0%)
Mutual labels:  library
Matter
Material Design Components in Pure CSS. Materializing HTML at just one class per component 🍰
Stars: ✭ 888 (+5450%)
Mutual labels:  library
Arma3launcherlib
Simple .NET library containing everything needed for a custom Arma 3 launcher.
Stars: ✭ 7 (-56.25%)
Mutual labels:  library

Galgo-ios

Inspired on Galgo for Android

A tiny iOS library for those moments when you want your logs to be displayed on screen.

Abstract

Sometimes we want/need to know what's going on behind the scenes but our app is not always connected to our computer to let us check the logs. Galgo will let you display your log messages as an overlay on top of your UI.

Extremely useful for testers who want to have more insight into what's going on behind the scenes in our apps when it misbehaves.

You can also define some basic settings such as background color, text color, text size and number of lines to display on screen so it better fits your needs.

How to download and Install

  • You can clone and copy the IKGalgo.h and IKGalgo.m to your project
  • Cocoa Pods: Coming soon!

Code Example

Start IKGalgo:

IKGalgo *galgo = [IKGalgo sharedLogger];
[galgo setNumberOfLines:10];
[galgo setBackGroundColor:[UIColor blackColor]];
[galgo setFontColor:[UIColor whiteColor]];
[galgo setFontSize:16];
    
[galgo log:@"Galgo Started"];
[galgo log:@"Showing First View Controller"];

Add a log somewhere::

[[IKGalgo sharedLogger] log:@"Font: Red Color"];

Example

Here's the example that ships in the repo:

Contact Us

For questions or general comments regarding the use of this library, please use our public hipchat room.

If you find any bugs or have a problem while using this library, please open an issue in this repo (or a pull request :)).

And you can check all of our open-source projects at inaka.github.io

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].