This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"dives": [{"created": "2011-06-01 07:03:16 +0000", "number": 1, "lastEdited": "2011-06-01 07:03:17 +0000", "locationName": "Hamburg", "location": "ag9ub3RlcGFkaS1zZXJ2ZXJyEAsSCERpdmVTcG90GKrAAgw", "key": "ag9ub3RlcGFkaS1zZXJ2ZXJyFwsSBURpdmVyGNqwAgwLEgREaXZlGAUM", "entry": "2010-05-27 18:27:00 +0000"}, {"created": "2011-06-03 07:12:36 +0000", "number": 3, "lastEdited": "2011-06-03 07:12:36 +0000", "locationName": "Hannover", "location": "ag9ub3RlcGFkaS1zZXJ2ZXJyEAsSCERpdmVTcG90GNuwAgw", "key": "ag9ub3RlcGFkaS1zZXJ2ZXJyGAsSBURpdmVyGNqwAgwLEgREaXZlGLwXDA", "entry": "2010-05-27 18:27:00 +0000"}], "npclass": "diveList"} | |
| //so sollte es sein | |
| {[{"created": "2011-06-01 07:03:16 +0000", "number": 1, "lastEdited": "2011-06-01 07:03:17 +0000", "locationName": "Hamburg", "location": "ag9ub3RlcGFkaS1zZXJ2ZXJyEAsSCERpdmVTcG90GKrAAgw", "key": "ag9ub3RlcGFkaS1zZXJ2ZXJyFwsSBURpdmVyGNqwAgwLEgREaXZlGAUM", "entry": "2010-05-27 18:27:00 +0000"}, {"created": "2011-06-03 07:12:36 +0000", "number": 3, "lastEdited": "2011-06-03 07:1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class LoadingAlertView : UIAlertView | |
| { | |
| public LoadingAlertView (string title) : base(title,String.Empty,null,null,null) | |
| { | |
| } | |
| public override void LayoutSubviews () | |
| { | |
| base.LayoutSubviews (); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Installation | |
| 2. Getting started | |
| 3. OOP | |
| 4. MVC | |
| 5. Interface | |
| 1. Nib2Cib | |
| 2. Code | |
| 6. Commucation with Server | |
| 7. Drag and Drop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Foundation/CPObject.j: if (typeof self._UID === "undefined") | |
| Foundation/CPObject.j: self._UID = objj_generateObjectUID(); | |
| Foundation/CPObject.j: return _UID + ""; | |
| Foundation/CPProxy.j: if (typeof self._UID === "undefined") | |
| Foundation/CPProxy.j: self._UID = objj_generateObjectUID(); | |
| Foundation/CPProxy.j: return _UID; | |
| Objective-J/CFDictionary.js: this._UID = objj_generateObjectUID(); | |
| Objective-J/CFPropertyList.js: this._UID = objj_generateObjectUID(); | |
| Objective-J/CFURL.js: this._UID = objj_generateObjectUID(); | |
| Objective-J/CFURL.js: return this._UID; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var baseURL = @"http://localhost/~Vincent/Mail/Webservice"; | |
| var completeURL = [CPString stringWithFormat:@"%@/%@", baseURL,@"?class=FetchImap&method=getMailboxes"]; | |
| var request = [CPURLRequest requestWithURL:[CPURL URLWithString:completeURL]]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| string version = NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Mit Var nur in der Datei verfügbar | |
| var kCellHeight = 100; | |
| //Ohne Var als Global im ganzen Programm verfügbar | |
| kCellHeight = 50; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UIView view = new UIView(); | |
| //Dicke des Randes | |
| view.Layer.BorderWidth = 1; | |
| //Farbe des Randes | |
| view.Layer.BorderColor = UIColor.FromRGB(100,100,100).CGColor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Bilder direkt aus dem Bundle laden | |
| bundleImage.Image = UIImage.FromBundle("14_fat-cat.jpeg"); | |
| //Bilder aus einen Verzeichniss im Bundle laden | |
| folderImage.Image = UIImage.FromBundle("TestFolder/14_fat-cat.jpeg"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| char[] alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToCharArray(); |