Mobile and Social Network Technology

This blog talks about iOS,Android,Mac,Cocoa,use of social networks, tips and tricks which can be used by you.

Wednesday, December 12, 2012

Textfield on cocos2d Mac

›
Surprisingly adding a textfield in cocos2d Mac isn't as simple as in cocos2d iOS. There are various suggestions by other coders on how ...
21 comments:
Thursday, November 22, 2012

Conversion between CGPoint & NSValue (Mac)

›
To convert CGPoint to NSValue: NSValue value XY = [ NSValue   valueWithPoint : CGPointMake (X, Y)]; To retrieve CGPoint from NSValu...
30 comments:

Icons for Mac App

›
This article also covers how to create .icns file which is used as icon for Mac Applications. First,you need to create a folder with .ic...
7 comments:
Tuesday, November 20, 2012

Cocos2d For Mac

›
   Create a folder say(Cocos2DGame) where you want to download a copy of   Cocos2d:    On your Terminal, > git clone git: //github ...
3 comments:
Tuesday, August 14, 2012

How to use NSScanner on NSString.

›
This is quiet useful in terms of parsing a simple static webpage, also pick certain kind of words from the NSString. Lets say we have fo...
2 comments:
Wednesday, August 1, 2012

Tips: How to find if NSDictionary has a key.

›
if ( [[myDiction  allKeys ] containsObject : @"myKey" ])      NSLog ( @"It contains myKey" );
2 comments:
Tuesday, July 31, 2012

How to use NSAttributedString in iOS 6

›
infoString = @"This is an example of Attributed String" ; NSMutableAttributedString *attString=[[ NSMutableAttributedStrin...
328 comments:
Thursday, July 26, 2012

Tips: Hide scrollbars of UIScrollView

›
[ mScrollView setShowsHorizontalScrollIndicator : NO ]; [ mScrollView setShowsVerticalScrollIndicator : NO ];
2 comments:
Tuesday, July 24, 2012

How to animate a line draw ?

›
If you want to draw a line pixel by pixel. You will have to use combination of  UIBezierPath,  CAShapeLayer,  CABasicAnimation.  You can d...
Saturday, July 21, 2012

convert NSArray in float[]

›
        NSArray *c=[ NSArray   arrayWithObjects : @"1" , @"8" , @"4" , @"2" , nil ];          ...
4 comments:
›
Home
View web version

Contributors

  • D.Scott
  • Reetu Raj
Powered by Blogger.