[아이폰] storyboard turorial http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1http://www.raywenderlich.com/5191/beginning-storyboards-in-ios-5-part-2 탭, 네비 사용 http://diveis.tistory.com/22기능정리 http://pinkyroman.tistory.com/4 더보기 [아이폰] 기본 기능 function *************************************************************************1. 초기화/제목달기************************************************************************* - (id)init{ self = [super init]; if(self != nil) { // initialize } return self;} - (id)initWithCoder:(NSCoder *)aDecoder{ if(self == [super initWithCoder:aDecoder]) { self.title = @"첫번째 ^^"; } return self;} *********************************.. 더보기 [아이폰] 그래프 graph 원그래프 chart 차트 SimplePieChart.zip PieChartView *_pieChart; CGRect rect = CGRectMake(33.0f, 180.0f, 250, 250); _pieChart = [[PieChartView alloc] initWithFrame:rect]; [self.view addSubview:_pieChart]; [_pieChart clearItems]; [_pieChart setGradientFillStart:0.3 andEnd:1.0]; [_pieChart setGradientFillColor:PieChartItemColorMake(0.0, 0.0, 0.0, 0.7)]; [_pieChart addItemValue:0.4 withColor:PieChartItemColorMake(1.0, .. 더보기 이전 1 ··· 111 112 113 114 115 116 117 ··· 253 다음