Skip to main content

Dump the Auto layout & Constraints!

Developing a unique framework which avoids usage of Auto layout & Constraints. Would be releasing it soon. Happy Coding :)

Comments

Popular posts from this blog

XML to NSDictionary

Hi here is the code for all the NSDictionary lovers Use the following code to make XML_Dictionary. Just make the classes from given code & use few steps of code like :  NSDictionary *_dictData= [ XML_Dictionary dictionaryForXMLString :xmlString error :&error]; here we go with, Please give ur Value Feedback // //  XML_Dictionary.h //  XML_Dictionary // //  Created by Vensan on 05/05/12. //  Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> @interface XML_Dictionary : NSObject < NSXMLParserDelegate > {     NSMutableDictionary *MainDictionary;     NSMutableArray *dictArray;     BOOL foundString; } @property ( strong ) NSString *stringValue; - ( NSDictionary *)objectWithData:( NSData *)data; + ( NSDictionary *)dictionaryForXMLData:( NSData *)data error:( NSError **)errorPointer; + ( NSDictionary *)dictiona...