POST /api/v4/implementations/invoke/ HTTP/1.1
Host: zapier.com
Content-Type: application/json
Accepts: application/json
Authorization: Bearer SOMEKEY
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
### Keybase proof | |
I hereby claim: | |
* I am tayhalla on github. | |
* I am taylorhalliday (https://keybase.io/taylorhalliday) on keybase. | |
* I have a public key ASCvpu3Vj6YPHbHclUzSA2xV9llSNOKV3aiITZWOfJtExgo | |
To claim this, I am signing this object: |
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
{ | |
"retries": 0, | |
"total_results": 7, | |
"items_per_page": 25, | |
"start_index": 0, | |
"facets": [], | |
"facet_values": [], | |
"suggestions": [], | |
"results": [ | |
{ |
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
/* | |
Creates a green btn and sets its position equal to a rect of {50.0f, 50.0f, 200.0f, 300.0f} | |
*/ | |
UIButton *btn = [[UIButton alloc] init]; | |
btn.backgroundColor = [UIColor greenColor]; | |
[btn setTranslatesAutoresizingMaskIntoConstraints:NO]; | |
[self.view addSubview:btn]; | |
NSLayoutConstraint *widthConstraint = [NSLayoutConstraint constraintWithItem:btn attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:0.0 constant:200]; |