
Search In
If you want to reverse an existing array in objc, you can do it this way.
- (NSMutableArray*)reverseArray {
if ([self.assetsArray count] == 0)
return;
NSUInteger i = 0;
NSUInteger j = [self.assetsArray count] - 1;
while
Which ORM is better is terms of performance and ease of use between these two. In some benchmarks I have read ORMLite is faster and in some, I read GreenDao. I like the way automatic code generation works in GreenDao. Also it does not use any annotat
Hi i am making an iOS app using cordova Phonegap .
I want to add Facebook plugin so user can register to Facebook.
So i Did so many things but still not getting proper way?
Please help guys
Thanks
Ive createad a navigation drawer and 2 fragments.
I want to create a fragment with a map where i can put pins on etc.
But it wont let be because i need to extend SupportMapFragment, and i need extend Fragment.
Hello,
I am making an online shopping app. I am storing user details in sqlite database( Name and Password). So at the the time of login i want to check weather username and password is correct or not. So in that case how to manage session.Because t
Dear Members,
Is it possible for two apps to simultaneously access microphone under iPhone. We want to develop a Skype recorder for iPhone but need to determine the possibility.
In Android we were getting problem in shared access of mi
Performance optimization
I am planning to develop a new web application using Nodejs and I want it to make it faster than usual in order to keep it ahead in the competitive fast web technology. So can anyone please suggest some possible steps
As a beginner in Game Development, I need a little help in deciding which game engine should I start with to learn how they work? I understand different games use different engines but is there a simple enough or common enough engine I can learn the
