Sunday, August 4, 2013

Discover and organize Github alternate repositories

Do you use lots of framework in your project. If so you must be using Cocoapods.
But what if you want to find alternate solution to your current framework .

Try Gitrep.

For example if you want to try RestKit as framework but explore alternate framework then
go to this link
http://gitrep.com/users/RestKit/repos/RestKit
It will show u other similar alternate framework.

But if you want to learn RestKit follow this stackover flow answer.

And for facebook's popular framework three20 - which no longer supported has alternate nimbus

http://gitrep.com/users/facebook/repos/three20

http://gitrep.com/

Happy Discovering :)

Xcode plug-in to autocomplete name for image and Color



Can't remember whether that image you just added to the project was called button-separator-left or button-left-separator? Now you don't have to, because this will autocomplete your imageNamed: calls like you'd expect. Just type in [ NSImage imageNamed: or [ UIImage imageNamed: and all the images in your project will conveniently appear in the autocomplete menu.




Monday, June 17, 2013

Facebook iOS app for iOS7 without left side bar !

If you have used or seen the new iOS 7, then there is one risky think apple has added to the OS. That is system wide swipe gesture ie swipe left to go back ! Why is it so risky ? It is because when we left swipe most of the app will open the side menu ! The example is facebook !!!

Now lets look at the new Facebook app for ios 7 which easily solves the slide side view menu problem, and goes native to iOS with tab bar controllers !

But this is only a test UI not a final UI hence it looks like a quick and dirty fix rather then a final flat iOS7 style design. Lets say its a functional design rather then graphical one.






Monday, January 21, 2013

How to install the Mac App Store in OSX 10.6 Snow Leopard

Step 1 : Goto

http://support.apple.com/kb/DL1399

Step 2 : Download the dmg file

Download

Step 3: Close Xcode or any-other system software and Browsers like Chrome or Safari

Step 4 : You are ready to go using app store after installing and dont forget to restart your machine

Note that it is a big download, file size is 1Gb. So it will take time.


About Mac OS X 10.6.8 Update Combo v1.1

The 10.6.8 update is recommended for all users running Mac OS X Snow Leopard and includes general operating system fixes that enhance the stability, compatibility, and security of your Mac, including fixes that:
  • Enhance the Mac App Store to get your Mac ready to upgrade to Mac OS X Lion
  • Resolve an issue that may cause Preview to unexpectedly quit
  • Improve support for IPv6
  • Improve VPN reliability
  • Identify and remove known variants of Mac Defender
SHA1 = e0742e7537f80c9e01376ea3b3c09df993900643

  • Version: 10.6.8 v.1.1
  • Post Date: Jul 25, 2011
  • Download ID: DL1399
  • License: Update
  • File Size: 1.09 GB
System Requirements
Mac OS X v10.6 - Mac OS X 10.6.7


BONUS
Now you have Mac App Store installed you are ready to go and install Mac OS X 10.8 on your system

Step 5 : Now as you navigate to
http://www.apple.com/osx/
And click "Upgrade Now"
Upgrade Now

Or

https://itunes.apple.com/us/app/os-x-mountain-lion/id537386512?ls=1&mt=12



via - Source


Wednesday, August 1, 2012

Core Data in easy steps - Tutorials step by step

Step 1: Manage xDataModel
1a : Add Entity
1b: Add Attribute
1c: Change Type

Step 2: Select the required entitie
2a: File --> New --> New File
2b: Under CoreData, select NSManagedObjectSubClass

Step 3: Select "AppDeligate.h"
3a: #import "entitie.h" - entitie is name of our selected entitie

Step 4: Create Data
4a: Make sure you use error logging because xcode does not report created by CoreData
4b:


NSManagedObjectContext *context = [self managedObjectContext];
    Login *detail = [NSEntityDescription insertNewObjectForEntityForName:@"Login" inManagedObjectContext:context];

    detail.userName = @"userName";
    detail.password = @"password";
    
    NSError *error;
    if (![context save:&error]) {
        NSLog(@"Error !");
    }
    
    NSFetchRequest *request = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Login" inManagedObjectContext:context];
    
    [request setEntity:entity];
    
    NSArray *arr = [context executeFetchRequest:request error:&error];
    
    for (PMLogin *ent in arr) {
        NSLog(@"name %@", ent.userName);
        NSLog(@"Number %@",ent.password);
    }




I'm using following book and video to learn Core Data in easy steps


Sams Teach Yourself Core Data for
iPhone Core Data 1-3

http://www.youtube.com/watch?v=QBrkavVJsw0&feature=relmfu
http://www.youtube.com/watch?v=DBNpUzhUAsg&feature=relmfu
http://www.youtube.com/watch?v=12UlRUnpp2I&feature=relmfu



Saturday, October 9, 2010

Windows Phone 7 OS - 1st Preview

Key features:

  • Premium mobile OS (high minimum hardware requirements)
  • Clean, uncluttered interface with distinctive design language
  • Easy and thumbable user interface
  • Smooth operation with cool animations and transition effects
  • A fresh start with no legacy support needed
  • Backed up and developed by one of the largest software companies in the world
  • Excellent MS Office mobile implementation
  • Top-notch social integration
  • Excellent cloud services integration (SkyDrive, Windows Live, Xbox Live)

Main disadvantages:

  • No system-wide file manager
  • No videocalling
  • Limited third-party apps
  • No Bluetooth file transfers
  • No USB mass storage mode
  • No memory card support
  • No multitasking
  • No copy paste
  • Too dependent on Zune software for computer file management and syncing
  • No music player equalisers
  • No Flash or Silverlight support in the web browser
  • No sign of free Bing maps Navigation so far
  • No DivX/XviD video support
Sources