AVPlayer – looping video without “hiccup”/delays
I tried create loop by AVQueuePlayer, this method has delays between end and start play. for looping AVQueuePlayer i use this code: 123456[[NSNotificationCenter defaultCenter] addObserver:self...
View ArticleScrollView with scroll’s indicators, which are shown all the time.
My simple solution by writing category for UIImageView, because scroller is imageview. How to use :) Just setup tag for your scrollview and you will get one with scroll indicators, which are shown all...
View ArticleCreate movie from array of images
Create movie from images seq. First part of method, initialize 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950- (void) writeImagesAsMovie:(NSArray *)array...
View ArticleiOS javascript device rotation
The post iOS javascript device rotation appeared first on Notes of a Developer.
View ArticleEasy custom back button
1234UIButton* customBackButton = [UIButton buttonWithType:101]; [customBackButton setTitle:@"Back" forState:UIControlStateNormal]; [customBackButton setCenter:self.view.center]; [self.view...
View ArticleCustom UINavigationBar
Create image for navigation background – portrait UIImage *NavigationPortraitBackground = [[UIImage imageNamed: @"navigationbarPortrait.png"] resizableImageWithCapInsets: UIEdgeInsetsMake(0, 0, 0, 0)];...
View ArticleFacebook compose sheet view like in iOS 6 for iOS 4 and above
Project based on DETweetComposeViewController Facebook connection with Facebook SDK 3.0.x (last at 2 september 2012) What is it? DEFacebookComposeViewController is an iOS 4 compatible composer view...
View ArticleSubclass of UITextView with syntax highlighting for iOS 5.0 not finished...
With new iOS 6.0 everyone junior iOS developer can do code editor application with syntax highlighting. Because UITextView has attribute attributedText, which has enough parameters and functionality...
View ArticleHow 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 ArticleLatest 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 ArticleSimple way to implement multi-thread
I want show you simple way to create multi-thread calculations in few strings of code. Simple collection of operations. But remember about blocks specifications and use proper storage type....
View Article