ios8 uitableviewcell “self-sizing cell" and “dynamic type"

http://natashatherobot.com/ios-8-self-sizing-table-view-cells-with-dynamic-type/

http://captechconsulting.com/blog/tyler-tillage/ios-8-tutorial-series-auto-sizing-table-cells

http://www.raywenderlich.com/73602/dynamic-table-view-cell-height-auto-layout

http://useyourloaf.com/blog/2014/08/07/self-sizing-table-view-cells.html

Understanding Self Sizing Cells and Dynamic Type in iOS 8

http://stackoverflow.com/questions/18746929/using-auto-layout-in-uitableview-for-dynamic-cell-layouts-variable-row-heights

http://blog.ijasoneverett.com/2014/02/resize-uitableview-height-with-auto-layout/

Drupal Service/REST Tutorial

https://www.drupal.org/project/services
https://www.drupal.org/node/113697

http://drupal.stackexchange.com/questions/6551/creating-a-node-using-services-6-3-rest

Drupal iOS SDK – CSRF token
http://security.stackexchange.com/questions/25900/how-does-a-csrf-token-prevent-an-attack-and-how-can-i-safely-use-avoid-it-for-m

Drupal iOS SDK

https://github.com/kylebrowning/drupal-ios-sdk/wiki/drupal-ios-sdk-2.0

Chinese Tutorial
http://avnpc.com/pages/import-export-drupal-data-by-restful-service

2-Legged OAuth
https://www.drupal.org/node/1871498

Using oAuth with the Drupal iOS SDK
http://www.workhabit.com/blog/using-oauth-drupal-ios-sdk

Service and Android
http://mobile-grid.com/workbench/drupal-servicesrest-and-mobile-devices-using-android-example

ios8 CLLocationManager Updates

for ios8 SDK, these should be updated

[CLLocationManager requestWhenInUseAuthorization];
[CLLocationManager requestAlwaysAuthorization];

or

if ([self.locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
[self.locationManager requestWhenInUseAuthorization];
}

after [[CLLocationManager alloc]init]
before [CLLocationManager startUpdatingLocation]

http://stackoverflow.com/questions/25848125/ios-8-mkmapview-user-location-request-failure
http://nevan.net/2014/09/core-location-manager-changes-in-ios-8/
http://beageek.biz/solution-ios-location-services-working-ios-8/