Skip to content

Instantly share code, notes, and snippets.

View rafaelbartolome's full-sized avatar
🏎️
Working ... as usual.

Rafael Bartolome rafaelbartolome

🏎️
Working ... as usual.
View GitHub Profile
@rafaelbartolome
rafaelbartolome / RBMContranst.h
Created July 8, 2014 18:51
NSLog helpers. DLog for debug, ELog for errors, ALog for alertview
//*********************************
#pragma mark LOGS
//*********************************
#define RBM_DEBUG
// DLog console log for debug
#ifdef RBM_DEBUG
#define DLog(fmt, ...) NSLog((@"%s[%d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
@rafaelbartolome
rafaelbartolome / SafariKeychain.swift
Last active September 5, 2019 06:44
Use iCloud SafariKeychain from Swift5
//
// SafariKeychain.swift
// Positipp
//
// Created by Rafael Bartolome on 15/06/2019.
// Copyright © 2019 Moonshot People Tech SL. All rights reserved.
//
import Foundation