AriyankiNet Mobile Version
Mon 12 Oct 2015, 05:21

This is AriyankiNet IOS App, mobile version app of ariyanki.net. In this app I’m using Objective C, Json Data API, Lazy Table Image, and Slide Out Side Menu. This App contain Article & Photo like what is contained in this website.
Application Menu
Slide out Side Menu Bar
Json Data API
UITableView
Article List
UITableView
Json Data
read more
IOS Slide Out Side Menu Bar
Thu 08 Oct 2015, 07:46

I see a lot of IOS apps using slide-out Side Menu Bar. I’m interested to using it in my apps, but i couldn’t find it in Xcode Object Library, because it is a custom library. So i google it and found really simple library SWRevealViewController and read this tutorial http://www.appcoda.com/ios-programming-sidebar-navigation-menu how
read more
Lagging on scroll UITableView when using network images
Wed 07 Oct 2015, 05:03

As a beginner, i realized that when i use network images, i can’t load images directly when UITableView load the data. It can make my tableview lagging and slower when i scroll it.
So i have to make my code load the images when user not scrolling the tableview. It happen
read more
Networking using NSURLSession
Mon 05 Oct 2015, 07:12

This is my code for downloading image or json (you can modify if you need another format) using NSURLSession, this code based on sample code from https://developer.apple.com/library/ios/samplecode/LazyTableImages/Introduction/Intro.html:
DownloaderRecord.h
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface DownloaderRecord : NSObject
@property (nonatomic, strong) NSString *url;
@property (nonatomic, strong) NSString *postData;
@property (nonatomic, strong) UIImage *imageData;
@property (nonatomic, strong) NSDictionary *jsonData;
@end
DownloaderRecord.m
#import "DownloaderRecord.h"
@implementation DownloaderRecord
@end
Downloader.h
#import <Foundation/Foundation.h>
@class DownloaderRecord;
@interface Downloader : NSObject
@property (nonatomic, strong) DownloaderRecord *downloaderRecord;
@property (nonatomic, copy) void (^completionHandler)(void);
-
read more
How to deploy your iOS app to your iPhone without developer account
Fri 11 Sep 2015, 08:35

In my case i am using Xcode 6.4 and iPhone 5c iOS 8.4, this is what did i do:
First, your iPhone must be in jailbroken condition and AppsSync installed.
Second, modify you Xcode:
Close your xcode if opened
Go to your finder, open application
Right click Xcode and choose Show Package Contents
Open directory Contents
read more