~/Library/Android/sdk/platform-tools/adb shell input text 'this is a text'
git tag -d release01
git push origin :refs/tags/release01
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
NSTextAttachment *attachment = [[NSTextAttachment alloc] init]; | |
attachment.image = [UIImage imageNamed:@"image.png"]; | |
//add image to the right side of the text | |
attachment.bounds = CGRectMake(10, -4, 28,28); | |
//add image to the left side of the text | |
attachment.bounds = CGRectMake(-4, 0, 18,18); | |
NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment]; | |
NSMutableAttributedString *stringWithIcon= [[NSMutableAttributedString alloc] initWithString:@""]; |
- Add UItableView inside ViewController in Storyboard.
- Create IBOutlet called tableView
- Set Delegate and DataSource in ViewController in Storyboard
class ViewControllerCustom: UIViewController, UITableViewDelegate, UITableViewDataSource {
var items: [String] = ["Swift1", "Swift2", "Swift3"]
git commit --amend
git push --force-with-lease
1. Instalar Appium...en mi caso con sudo (siguiendo las instrucciones de: https://github.com/appium/appium/blob/master/docs/en/appium-setup/running-on-osx.md)
sudo npm install -g appium
2. Instalar Appium Instruments (Without delay), este enlace web se explica las razones https://github.com/appium/appium/blob/master/docs/en/advanced-concepts/iwd_xcode7.md y las instrucciones
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
/* | |
Entry: | |
[ { key: 'activar_reserva_email', | |
ES: 'Email que usar谩s en la aplicaci贸n ', | |
EN: 'The email address you will use on the application' }, | |
{ key: 'activar_reserva_cuenta_no_registrado', | |
ES: 'La cuenta donde quieres recibir los pagos', | |
EN: 'The account where you wish to receive your payments' }, | |
{ key: 'activar_reserva_boton_no_registrado', |