This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* A simple snippet to Open the Address book in iOS and select a person's email address and | |
add it to the textfield (_addressesTextView) | |
PLATFORM: XAMARIN iOS | |
*/ | |
ABPeoplePickerNavigationController _contacts; | |
partial void AddEmail (NSObject sender) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* A simple Logging class, use with caution. | |
Usage: Call InitLog to define the logging level | |
There are 3 parameters: | |
consoleLevel = the level for logs written in the console (for debugging) | |
fileLevel = the level for the logs that are written to a file | |
defaultLevel = the default level of log when no log level is directly specified from the calling method | |
*/ | |
using System; | |
using System.Configuration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Succulent | |
@testable import TestAppUITests | |
class SucculentTestUITest: XCTestCase { | |
private var succulent: Succulent! | |
var session: URLSession! | |
var baseURL: URL! | |