Color Picker for iOS

Example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
- (void)viewDidLoad
{
    [super viewDidLoad];
   
    // Do any additional setup after loading the view, typically from a nib.
   
    if (self.cPicker == nil) {
        [self.view setBackgroundColor:[UIColor grayColor]];
        self.cPicker = [[VBColorPicker alloc] initWithFrame:CGRectMake(0, 0, 202, 202)];
        [_cPicker setCenter:self.view.center];
        [self.view addSubview:_cPicker];
        [_cPicker setDelegate:self];
        [_cPicker showPicker];
       
        // set default YES!
        [_cPicker setHideAfterSelection:NO];
    }
     
}

// set color from picker
- (void) pickedColor:(UIColor *)color {
    [_rect setBackgroundColor:color];
    [_cPicker hidePicker];
}

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    if (![_cPicker isHidden]) {
        [_cPicker hidePicker];
    }
}

// show picker by double touch
- (void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];
   
    if (touch.tapCount == 2) {
        [_cPicker setCenter:[touch locationInView:self.view]];
        [_cPicker showPicker];
    }
}

Get Geo tags from image

Little application for getting geo location from photo

Continue reading

BeerTender – my first game in app store :)

Увлекательный тайм киллер, не забывайте про девушек в игре :) Будут улучшения по мере поступления предложений и в зависимости от количества потребителей :)

Под катом описание и скрины


Continue reading

UIImage and Memory

+[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 file to determine if it can open the file.
• Reads and uncompresses the file each time it draws. Uses uncompressed size worth of memory only temporarily.
• Assigning a UIImage created this way to a UIImageView or as the contents of a CALayer also causes it to read and uncompress the file. The UIImageView or CALayer keep the expanded version.
Continue reading

Банкоматы одного банка в Киеве

Screen shot 2009-11-09 at 2.24.17 AM

Около 500

Coming soon…

iPhone in Europe

Очень интересный факт относительно 2 стран :)

Ну посмотрим сразу на карту и разоблачим их и поймем этот факт, хотя вы давно это знаете :(
iphone europe
Набросал чисто для визуального характера :)

Old news “Apple Project In Ukraine”

Добротно проорал с статьи:

Apple Computer Inc. plans to announce on Friday a software development and education project for Ukraine that is designed to take advantage of a labor force with high computer skills and low wages.

In a joint agreement with the National Academy of Sciences of Ukraine, Apple will train programmers, assign them basic programming and market Ukrainian software inventions abroad.

There are roughly 500,000 computer programmers among Ukraine’s 53 million citizens. Half of the country’s programmers are said to live in Kiev.

President Leonid M. Kravchuk endorsed the Apple project after a study predicted that Ukraine could capture 2 percent of the world’s software market and create 100,000 jobs within five years.

Apple will initially invest $30,000, according to the agreement, which was signed on Wednesday.

In return, Ukrainian programmers will write software for Apple at a quarter of the price that such work would cost in the West.

The Ukrainian subsidiary will also set aside 45 percent of its profits from the software exports marketed by Apple to purchase Apple hardware.

Оригинал: Apple Project In Ukraine

Ukraine!?

Что у нас за страна!? :( Все крупные компании нас обходят стороной, такие как: Apple, Google, …

Блин я просто в шоке! У Apple мы вообще числимся только в списках…

PayPal это вообще молчу… :(

Правительство у нас “идет в ногу со временем”!

Может устроить протест?
Что мы можем сделать, простые граждани нашей страны?
Может у кого-то есть свои идеи?

Я хоть и  не заядлый патриот, но желания у меня пока нету выехать из страны чтоб пользоваться всеми услугами. Пользоваться под другими данными и достовать все по более приемлемым ценам через десять лиц, меня тоже не радует и порядном поднадоело :(

Буду ресерчить, может уже есть какие движухи?! Если кто из читателей знает отпишите пожалуйста! Если не найду возможно буду организовывать, чисто на общественных началах.

З.Ы.: Это было написано после просмотра WWDC 09, хоть и конференция меня и не впечатлила…