Skip to content

Instantly share code, notes, and snippets.

Is AppKit causing you frustration? Instead of just complaining about it, lets try to make it better by compiling a list of specific problems with AppKit. Leave a comment below, and I'll include it in the list.


##NSView##

  • NSView does not have the ability to set an affine transform.
  • Controls that have cells (such as NSTextField) do not respond properly when layer-backed. Take NSButton as an example. When not layer-backed, it will animate properly using the animator proxy. When layer-backed, using the animator proxy breaks focus rings (they jump to destination immediately). Currently, directly manipulating the layer of a cell-based control is not supported (and will lead to a broken interface), but is much needed.

##NSViewController##

  • NSViewController could be more useful. It has -loadView but no other lifecycle methods.
@TheCodeEngine
TheCodeEngine / buildNumber.sh
Created May 26, 2013 11:27
XCode 4 Build Number from git Reposotory
#!/bin/bash
buildNumber=`git rev-list HEAD | head -c5`
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$INFOPLIST_FILE"
@TheCodeEngine
TheCodeEngine / wait_three_seconds.c
Last active December 16, 2015 17:49
Wait three seconds
fprintf(stdout, "run chat server ...\n");
struct timespec t = { 3/*seconds*/, 0/*nanoseconds*/};
int count = 0;
while ( count < 3 )
{
printf("Wait three seconds and...\n");
nanosleep(&t,NULL);
fflush(stdout); //see below
count++;
}
@TheCodeEngine
TheCodeEngine / StringDeleteNewLineOnEnd.c
Created April 24, 2013 15:05
C Delete the new line character from the end of a string
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void string_removeNewlineAtEnd(char *string)
{
if ( string[strlen(string) - 1] == '\n' )
string[strlen(string) - 1] = '\0';
}
@TheCodeEngine
TheCodeEngine / union.c
Created April 24, 2013 13:03
Union example
#include <stdio.h>
#include <stdlib.h>
/********************
Ausgabe:
Q1 Count: 4
Q2 Weight: 1.50
Q3 Volume: 2.000000
*********************/
@TheCodeEngine
TheCodeEngine / struct-function-pointer.c
Created April 24, 2013 13:03
A Stuct in a function example
#include <stdio.h>
#include <stdlib.h>
typedef struct
{
const char *name;
const char *species;
int age;
} turtle;
@TheCodeEngine
TheCodeEngine / struct-easy.c
Created April 24, 2013 13:02
A struct example
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char const *argv[])
{
struct fish
{
const char *name;
const char *species;
@TheCodeEngine
TheCodeEngine / function-with-pointer.c
Created April 24, 2013 11:43
Funktion with pointer
#include <stdio.h>
#include <stdlib.h>
void incnum(int *number)
{
fprintf(stdout, "Original Number:%d\n", *number);
*number += 1;
fprintf(stdout, "Increment Number: %d\n", *number);
}
h1. Sublime Text 2 - Useful Shortcuts (Mac OS X)
h2. General
| *⌘T* | go to file |
| *⌘⌃P* | go to project |
| *⌘R* | go to methods |
| *⌃G* | go to line |
| *⌘KB* | toggle side bar |
| *⌘⇧P* | command prompt |
@TheCodeEngine
TheCodeEngine / UINavigationBarDoubleTab.h
Last active October 11, 2015 01:47
UINavigationBar Double Tap
- (void)viewDidLoad {
UITapGestureRecognizer* tapRecon = [[UITapGestureRecognizer alloc]
initWithTarget:self action:@selector(navigationBarDoubleTap:)];
tapRecon.numberOfTapsRequired = 2;
[navController.navigationBar addGestureRecognizer:tapRecon];
[tapRecon release];
}
- (void)navigationBarDoubleTap:(UIGestureRecognizer*)recognizer {
[tableView setContentOffset:CGPointMake(0,0) animated:YES];