Welcome To Snipplr
Everyone's Recent Objective C Snippets Tagged osx
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
« Prev 1 Next »
Cocoa provides NSTask to run subprocesses. It can be used to run shell scripts, but all this manual pipe and file handling is a bit cumbersome. Fortunately, for a simple script, we can use the trusty old system and redirect its result to a file.
0
1076
posted 13 years ago by zingo
Do you need you app to do something when it is first run on a certain computer? Do you need to know if it has been run before? Enter the following code into your Application Delegate.
This code creates a BOOL that is created when the app is run. T...
0
1119
posted 13 years ago by zingo
Drawing scaled rectangles of arbitrary width and height that keeps the corner and sides properly scaled while growing the center.
1
1101
posted 14 years ago by zingo
Remove all the keys of the application’s preferences file from ~/Library/Preferences with Cocoa’s NSUserDefaults class.
2
1016
posted 16 years ago by zingo
Using a gcc predefined macro, __DATE__, the code can know for itself when it was compiled, and build in an expiration date based on that value.
The former code (http://snipplr.com/view/3448/kill-app-after-expire-date/) was not internationalised an...
5
1144
posted 16 years ago by zingo
A database table is basically an array of dictionary objects. As long
as all the fields are valid property list types, you can loop through
the array creating a managed object for each dictionary and setting
the values. If you have an array con...
2
969
posted 17 years ago by zingo
Prints content from an NSError or NSArray content from a managedObjectContext.
0
961
posted 17 years ago by zingo
Using a gcc predefined macro, __DATE__, the code can know for itself when it was compiled, and build in an expiration date based on that value.
For a internationalised version see: http://snipplr.com/view/7196/kill-app-after-expire-date-suicidal-c...
1
1216
posted 17 years ago by zingo
« Prev 1 Next »