Skip to content

Instantly share code, notes, and snippets.

View riosc's full-sized avatar

Carlos David Rios Vertel riosc

  • Santiago, Chile.
View GitHub Profile
@riosc
riosc / sqlite_ios
Created March 4, 2013 19:04
debug sqlite ios
http://blog.chrismiles.info/2011/07/core-data-debugging-with-sqlite.html
@riosc
riosc / tableView delegates and datasources methods
Created March 6, 2013 19:52
tableview delegates and datasources methods
#pragma mark table view delegate and datasources
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 1183;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UIEndodonticExamToothCell
* cell = [tableView dequeueReusableCellWithIdentifier:@"toothEndodonticDiagnosis"];
@riosc
riosc / gist:5333432
Created April 8, 2013 01:03
not dissmiss popover on tap
//BLOCKING DISSMISS POPOVER CLIKING OVER TAP WINDOW
//navPlaqueDetail.modalInPopover = YES;
//navPlaqueDetail.modalPresentationStyle = UIModalPresentationCurrentContext;
@riosc
riosc / gist:5681378
Created May 30, 2013 21:27
modified file betwen commits
http://stackoverflow.com/questions/1552340/git-show-all-changed-files-between-two-commits
@riosc
riosc / gist:5715044
Created June 5, 2013 16:00
GCD tutorials
http://www.raywenderlich.com/4295/multithreading-and-grand-central-dispatch-on-ios-for-beginners-tutorial
http://jeffreysambells.com/2013/03/01/asynchronous-operations-in-ios-with-grand-central-dispatch
@riosc
riosc / gist:7032067
Created October 17, 2013 20:55
push notification ios
http://stackoverflow.com/questions/15426422/how-to-update-provisioning-profile-for-push-notification-ios
http://stackoverflow.com/questions/8747539/how-do-i-check-if-an-ios-distribution-provisioning-profile-has-push-notification
@riosc
riosc / gist:7239061
Created October 30, 2013 19:51
squash commit con git
http://makandracards.com/makandra/527-squash-several-git-commits-into-a-single-commit
@riosc
riosc / gist:7265926
Created November 1, 2013 14:07
save nsdictionary or nsarray
http://stackoverflow.com/questions/3829631/is-it-possible-to-save-nsmutablearray-or-nsdictionary-data-as-file-in-ios
@riosc
riosc / gist:7370630
Created November 8, 2013 12:53
change bundle identifier android
http://stackoverflow.com/questions/14705874/bundle-id-in-android
@riosc
riosc / gist:7377004
Created November 8, 2013 20:20
custom url scheme ios
http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html