Quantcast
Channel: Notes of a Developer » iOS
Browsing all 14 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Create movie from array of images

Create movie from images seq. First part of method, initialize 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950- (void) writeImagesAsMovie:(NSArray *)array...

View Article



iOS javascript device rotation

The post iOS javascript device rotation appeared first on Notes of a Developer.

View Article

Image may be NSFW.
Clik here to view.

GLKit, Opengl ES 2.0 Picking Ray for select object

Solution for picking 1234567891011121314151617GLKVector4 normalisedVector = GLKVector4Make((2 * position.x / self.view.bounds.size.width - 1),                                                  (2 *...

View Article

Image may be NSFW.
Clik here to view.

Decompose matrix, functions for GLKit

Иногда появляется необходимость развернуть объект из одного положения в другое. Для этого нужно извлечь угол из текущей матрицы и добавить дельта угол, в результате чего получим угол на который будет...

View Article

JavaScript for detecting iOS devices

Simple JavaScript for detecting iOS devices 12345678var deviceAgent = navigator.userAgent.toLowerCase(); var iOS = deviceAgent.match(/(iphone|ipod|ipad)/);         if (iOS) {    // iOS } else {   //...

View Article


Image may be NSFW.
Clik here to view.

Easy custom back button

1234UIButton* customBackButton = [UIButton buttonWithType:101];     [customBackButton setTitle:@"Back" forState:UIControlStateNormal];     [customBackButton setCenter:self.view.center];     [self.view...

View Article

Custom UINavigationBar

Create image for navigation background – portrait UIImage *NavigationPortraitBackground = [[UIImage imageNamed: @"navigationbarPortrait.png"] resizableImageWithCapInsets: UIEdgeInsetsMake(0, 0, 0, 0)];...

View Article

Image may be NSFW.
Clik here to view.

How to add Push Notifications to your iOS application

Hi guys! Welcome to 5 Min Guide about how to integrate Push Notifications into your application. Push notification allows App to notify you of new messages or events without need to open the...

View Article


How to extend existing method

With blocks it’s more easy if you need extend your method. But if you will need extend some method of another class, not yours, and you will not be able to get the sources then this solution for you....

View Article


Image may be NSFW.
Clik here to view.

Latest app…

I want just leave here couple screenshots, no time for review and description. You can read about app here Or Essential Anatomy iTunes link Yes, I’m working in 3D4Medical company. The post Latest app…...

View Article

Image may be NSFW.
Clik here to view.

YouTube share controller like in iOS 7

Designed Youtube share controller like in iOS 7. Not finished and has some issues. Use it for your fear and risk. Or just make tests and fix it :) All fixes are appreciated. The post YouTube share...

View Article

Force change interface orientation in iOS

Found on Stackoverflow interesting hack for interface orientation fix. 12[self presentViewController:[UIViewController new] animated:NO completion:NULL]; [self dismissViewControllerAnimated:NO...

View Article

Share source code of my app

I’ve uploaded source code of my app on Github under MIT license. App and code is free, you can do with it where you want. If you will want add some improvements for app, I may will release them in next...

View Article


Image may be NSFW.
Clik here to view.

Charts control with animations for iOS

Almost half year ago I’ve made this control. For one idea, but then I found that my idea does not good enough to be implemented. It has just 2 classes VBPieChart, superclass UIView, and VBPiePiece,...

View Article
Browsing all 14 articles
Browse latest View live




Latest Images