Тег ‘Кодинг’:
Рубрики: Apple, OOP, others on Jun.12, 2010
На написание данного поста меня с подвигла недавняя задача! Мне нужно было для записки и слайдов дипломного проекта предоставить UML диаграммы. Сначала по гуглил и сразу попал на страницу одной софтины, которая называется MacTranslator, забегая на перед, т.к. многие могут просто не дочитать, НЕ РЕКОМЕНДУЮ ее покапать, хотя вряд ли ее кто и купит из [...]
Теги: objective-c, OOP, UML, Xcode, Кодинг
Рубрики: iPad, iPhone, OOP on Jun.10, 2010
+[UIImage imageNamed:] • Reads the file, uncompresses it, caches result • Cached copy of data is kept even if the UIImage is deallocated • Low memory condition causes cache to be purged. • No direct control over when cache is purged. • Use for small frequently drawn images. +[UIImage imageWithContentsOfFile:] • Just reads enough of [...]
Теги: iPad, iPhone, Memory, objective-c, UIImage, UIKit, Ukraine, work, Кодинг
Рубрики: Apple, iPad, iPhone, OOP, Tutorials on Jun.09, 2010
iPhone 3D Samples from “iPhone 3D Programming Developing Graphical Applications with OpenGL ES” book. Thanks Frank and Doris Rideout and O’REILLY 31 iPhone 3D Samples OpenGL ES 1.1 and 2.0 All links direct to http://examples.oreilly.com/ All Samples HelloArrow
Теги: Book, C, ES 2.0, iPad, iPhone, OOP, OpenGL, Кодинг
Рубрики: Apple, iPad, iPhone, Mac OS X, OOP, Tutorials on Jun.08, 2010
Do you have a great idea for a graphics-intensive iPhone or iPad application, but don’t know how to bring it to life? This book offers the perfect solution: a crash course on the OpenGL graphics library with an overview of iPhone 3D development. Whether you’re an experienced OpenGL developer looking to build iPhone apps for [...]
Теги: Apple, Book, iPhone, objective-c, OpenGL, Кодинг
Рубрики: Mac OS X on May.22, 2010
Video Tutorial working with NSTableView Part 1 Download Video part 1 Part 2 Download Video part 2 Source
Теги: Apple, Mac OS X, objective-c, OOP, Кодинг
Рубрики: Apple, Mac OS X, OOP on May.02, 2010
В свободное время решил поработать немного над созданием простого клиента для социальной сети “Вконтакте”. Хочу поделиться маленьким результатом. Это пока скромная версия, которая может вывести список, отправить сообщение, изменить статус и еще несколько мелочей… Я не руководился тем нужно это или нет, просто было интересно поработать с новым API от “Вконтакте”. Спасибо за внимания, если [...]
Теги: Apple, Cocoa, Free Time, iPhone, Mac OS X, objective-c, OOP, Vkontakte, Xcode, Кодинг
Рубрики: Android, iPad, iPhone, Mac OS X, Mob1serv on Feb.25, 2010
Hi there! We are a group of iPhone / Android developers who have developed a suite of web services to assist us and other developers in building great apps. After numerous projects we have become tired of having to set up the server scripts to do all the same things for different clients. Most of [...]
Теги: Android, Apple, iPad, iPhone, life, Mob1serv, objective-c, OOP, Private, work, Кодинг
Рубрики: Apple, iPad, iPhone, Mac OS X, OOP on Feb.09, 2010
Many people could not find this solution! It’s really very simple solution and it does not contain any private methods and functions. It’s based on the drawRect method and the simple manipulation with the title. If the title is specified, then the text of title displays, but if not, then displays the image.
Теги: Apple, iPad, iPhone, UIKit, UINavigationBar, Кодинг
Рубрики: iPhone on Feb.03, 2010
Presented simple and nice solution for radio buttons, based on the UIButton. Add buttons on view of controller 123456789for (int i = 0; i < 5; i++) { UIButton *but = [UIButton buttonWithType:UIButtonTypeCustom]; [but setImage:[UIImage imageNamed:@"checkbox.png"] forState:UIControlStateNormal]; [but setImage:[UIImage imageNamed:@"checkedbox.png"] [...]
Теги: Apple, iPhone, objective-c, OOP, Private, UIButton, UIImage, UIKit, Кодинг
Рубрики: Apple, iPad, iPhone on Feb.02, 2010
If you will need launch AppStore application with search request – use this example 12345NSString *str = @"itms-apps://ax.search.itunes.apple.com"; str = [NSString stringWithFormat:@"%@/WebObjects/MZSearch.woa/wa/search?media=software&term=", str]; str = [NSString stringWithFormat:@"%@3d4medical", str]; [[UIApplication sharedApplication] openURL: [NSURL URLWithString:str]];
Теги: AppStore, iPad, iPhone, Mac OS X, objective-c, OOP, Кодинг