Skip to main content

Posts

Showing posts from 2016

Best Blogs for iOS Developers

Top 100 Best Blogs for iOS Developers  I have already a post which is having few interesting blogs for iOS Developers. But here you can find 100 Best Blogs provided by Softwarehow.com                                         TOP 100 BEST BLOGS FOR IOS DEVELOPERS - By Single Click

Middle Level iOS Interview Questions - (2 - 5 Years)

                                                iOS Interview Questions - (2 - 5 Years) 1. Strong VS Week 2. Scenario: Class A and Class B and have a Navigation Controller. Can I see the strong property which I have created in Class B from Class A after Class B is POP from Navigation Controller? 3. Size Classes.. Auto Layouts , Adaptive Layouts 4. How will implement Square/Custom shaped View on Bar Code or QR Code Scanneron Camera? 5. How to set Table Cell height dynamically based on the label Using AutoLayouts 6. How to set content size of a scroll View using Auto Layouts. 7. Tell me about Coredata Stack? 8. How you store image data in Coredata or .. What is the datatype to store image in Coredata. 1. How to pass data between two Applications 2. How many ways to create Threads. 3. Types of Priority in a Queue 4. Difference between GCD and NSOperations 5. How to create Queue in NSOperations 6. Difference Between NSLog and DLog 7. How a label will print html data

CoreData and its Interview Questions

Core Data takes advantage of the Objective-C language and its runtime, and neatly integrates with the Core Foundation framework. The result is an easy to use framework for managing an object graph that is elegant to use and incredibly efficient in terms of memory usage. Every component of the Core Data framework has a specific purpose and function. If you try to use Core Data in a way it wasn't designed for, you will inevitably end up struggling with the framework. Developers new to the Core Data framework often confuse it with and expect it to work as a database. If there's one thing I hope you'll remember from this series, it is that Core Data isn't a database and you shouldn't expect it to act like one. It's the Model in the Model-View-Controller pattern that permeates the iOS SDK. Core Data isn't the database of your application nor is it an API for persisting data to a database. Core Data is a framework that manages an object graph. It&

Detect url from string and want it highlight?

Take IBOutlet for TextField ,  Button and Lable: TextField:  To take input from user Label: To show output to user Button : To Convert from string to Attributed string with highlighting HTTP string as a URL. Code: @interface ViewController () @property (weak, nonatomic) IBOutlet UITextField *textField; @property (weak, nonatomic) IBOutlet UILabel *label; -(IBAction)click:(id)sender; @end @implementation ViewController - (void)viewDidLoad {     [super viewDidLoad];        // Do any additional setup after loading the view, typically from a nib. } - (void)didReceiveMemoryWarning {     [super didReceiveMemoryWarning];     // Dispose of any resources that can be recreated. } -(IBAction)click:(id)sender {        NSMutableArray *mutableWords = [[_textField.text componentsSeparatedByString: @" "] mutableCopy];     NSLog(@"MutableWords: %@",mutableWords);     NSMutableAttributedString *resultString;     NSMutableAttributedString *attStr1,*

Crack Your iOS Interview

1. Topic Based Interview Questions https://github.com/CameronBanga/iOS-Developer-and-Designer-Interview-Questions 2. Default Interview Questions: http://www.geekinterview.com/Interview-Questions/iOS 3. General Interview Question and Answers http://abhijeetbargeios.blogspot.in/

Unix Command: Want to know the which XCode Version supports you Terminal from Your Terminal Application(Unix)

         What is your default XCode Version(if you have many)   Default XCode version from Terminal Command:  > xcodebuild -showsdks    If XCode 7.2 installed and assigned from XCode Preferences as default like below:       Run the Command:  > xcodebuild -showsdks  OS X SDKs:     OS X 10.11                        -sdk macosx10.11 iOS SDKs:     iOS 9.2                           -sdk iphoneos9.2 iOS Simulator SDKs:     Simulator - iOS 9.2               -sdk iphonesimulator9.2 tvOS SDKs:     tvOS 9.1                          -sdk appletvos9.1 tvOS Simulator SDKs:     Simulator - tvOS 9.1              -sdk appletvsimulator9.1 watchOS SDKs:     watchOS 2.1                       -sdk watchos2.1 watchOS Simulator SDKs:     Simulator - watchOS 2.1           -sdk watchsimulator2.1  

Objective C Concept @ a Single Glance (With Images)

  iOS - Objective C @Single Glance  with Ry's detailed  Figures What an Objective C can do?   What is the Relationship between Objective C and C programming Language?     How Objective Class Looks Like?     How a Property Looks Like? How methods (Functions in C) looks like?    "Categories" in Objective C :    "Protocols" in Objective C : If you want to know the complete theory of above figures, you can have a look @ http://rypress.com/tutorials/objective-c/index  

UIKit Framework Hierarchy

UIKIT Framework Hierarchy

Foundation Framework Classes Hirarchy

                       Foundation Framework Classes Hierarchy

NSMutableAttributedString

                ****************  Do you want fancy Text    *************** #import "ViewController.h" @interface ViewController () @property (weak, nonatomic) IBOutlet UILabel *myLabel; @end @implementation ViewController - (void)viewDidLoad {        [super viewDidLoad];        // Do any additional setup after loading the view, typically from a nib.        NSString *myString = @"That is a test attributed string.";           NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:myString];         [str addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(3,5)];         [str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(10,7)];            [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:20.0] range:NSMakeRange(20, 10)];         [str addAttribute:NSUnderlineStyleAttributeName value:

Foundation Framework Classes with Examples

  Foundation Framework is Foundation for making       iOS Applications  The Foundation framework defines a base layer of Objective-C classes.  The Foundation framework is designed with these goals in mind: Provide a small set of basic utility classes. Make software development easier by introducing consistent conventions for things such as deallocation. Support Unicode strings, object persistence, and object distribution. Provide a level of OS independence, to enhance portability. The Foundation framework includes the root object class, classes representing basic data types such as strings and byte arrays, collection classes for storing other objects, classes representing system information such as dates, and classes representing communication ports.  "An immutable string is a text string that is defined when it is created and subsequently cannot be changed. An immutable string is implemented as an array of Unicode characters (in other words, a t

Like us on Facebbok