One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.springframework.http.HttpHeaders; | |
| import org.springframework.http.HttpRequest; | |
| import org.springframework.http.MediaType; | |
| import org.springframework.http.client.ClientHttpRequestExecution; | |
| import org.springframework.http.client.ClientHttpRequestInterceptor; | |
| import org.springframework.http.client.ClientHttpResponse; | |
| import org.springframework.util.StreamUtils; |
| - (void)controller:(NSFetchedResultsController *)controller | |
| didChangeObject:(id)anObject | |
| atIndexPath:(NSIndexPath *)indexPath | |
| forChangeType:(NSFetchedResultsChangeType)type | |
| newIndexPath:(NSIndexPath *)newIndexPath | |
| { | |
| if (![self isViewLoaded]) return; | |
| switch(type) | |
| { | |
| case NSFetchedResultsChangeInsert: |
| #!/bin/bash | |
| # | |
| # Use agvtool to set Xcode project build number and create git tag | |
| # Note: requires Xcode project configured to use Apple Generic Versioning and git | |
| # | |
| # Usage: set_agv_ver.sh 123 | |
| # | |
| # src: https://gist.github.com/rob-murray/8644974 | |
| # |