Тег ‘Кодинг’:

Universal web services suite for iPhone/iPad and Android apps

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 the [...]

Теги: , , , , , , , , , ,

Комментарии отсутствуют

Custom UINavigationBar with image and back button

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 [...]

Теги: , , , , ,

Комментарии отсутствуют

Radio buttons for iPhone application

Presented simple and nice solution for radio buttons, based on the UIButton.
Add buttons on view of controller
for (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"] forState:UIControlStateSelected];
        [but setFrame:CGRectMake(0, 0, 17, [...]

Теги: , , , , , , , ,

Комментарии отсутствуют

How to launch AppStore application with request?

If you will need launch AppStore application with search request – use this example
NSString *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]];

Теги: , , , , , ,

Комментарии отсутствуют

Many information about development for iPad in one place

From Apple Site
Xcode/Developer Tools

Changing an iPhone Executable’s working directory from “Build Products directory” may cause the application not to install properly with the error message “The Info.plist for application at (null) specifies a CFBundleExecutable of (null), which does not exist.”
You may only use .png files for application icons for the [...]

Теги: , , , ,

Комментариев (2)

Use Matrix of rotate +MozOrientation

Previous post is simple example of usage MozOrientation. But now i use Matrix of rotate and i have nice animation.
You can read many information about Matrix of rotate here. These methods are used in game development, make animations and many others.
var context = drawingCanvas.getContext(’2d’);
 
var xc = 75;
var yc = 75;
var xi = 0;
var yi = [...]

Теги: , , , , , , ,

Комментарии отсутствуют

How to find bug in xCode project of iPhone application.

Теги: , , , , , , , ,

Комментарии отсутствуют

Does a NSString contain a substring ?

Here is a little tip on how to tell if a string contains another string, using the underused data type NSRange.
NSRange gives the starting location and the length of a given value, and is often used with arrays and strings. On this occasion we will use it to find the range of a substring within [...]

Теги: , , , , , ,

Комментарии отсутствуют

Resize and Mask an Image

Make image with a mask!

Source:
- (UIImage*) maskImage:(UIImage *)image  {
   
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
   
    UIImage *maskImage = [UIImage imageNamed:@"mask.png"];
    CGImageRef maskImageRef = [maskImage CGImage];
   
    // create a bitmap graphics context the size of the image
    CGContextRef mainViewContentContext = CGBitmapContextCreate (NULL, maskImage.size.width, maskImage.size.height, 8, 0, [...]

Теги: , , , , , , , ,

Комментарии отсутствуют

Spin UI Object, animation rotate 360 Degree

Rotate object / image 360 degrees on iphone
For anyone following along, you’ll need to add the QuartzCore Framework to your project and include the

#import <QuartzCore/QuartzCore.h>

Add animation for object:

CABasicAnimation *fullRotation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
fullRotation.fromValue = [NSNumber numberWithFloat:0];
fullRotation.toValue = [NSNumber numberWithFloat:((360*M_PI)/180)];
fullRotation.duration = 6;
fullRotation.repeatCount = 1e100f;
[myview.layer addAnimation:fullRotation forKey:@"360"];

Remove all animations for object:

[myview.layer removeAllAnimations];

Source

Теги: , ,

Комментарии отсутствуют