Anything New

developping any time

2011-11-01から1ヶ月間の記事一覧

UITableViewを横スクロールしてみる

こんな感じにtwitterのアイコンを横スクロールできるようにしてみた。 // テーブルを逆時計回りに90度回転させる self.tableView.transform = CGAffineTransformMakeRotation(-M_PI / 2); //セパレートなし self.tableView.separatorStyle = UITableViewCell…

CATransionでレイヤーを消すアニメーション

- (IBAction)anyAcition:(id)sender{ /*Use the select type. suckEffect, spewEffect, genieEffect, unGenieEffect, twist, tubey, swirl, cameraIris, cameraIrisHollowClose, cameraIrisHollowOpen, rippleEffect, charminUltra, zoomyIn, and zoomyOut.*…

Getting started with the SplitViewController on the iPad

O'ReillyのElisabeth RobsonさんによるiPad,splitViewcontrollerを使った簡単なRSSアプリのちゅーとりある■要約・ArticlesクラスにXMLフィードの解析、記事のカウントなど・MasterViewControllerクラスにArticleクラスでとってきた記事タイトルをtableに表示…

DetailViewControllerにwebViewの追加

選択したセルのリンク先を遷移先のdetailViewControllerのwebViewに表示detailViewController.hにUIWebViewの変数宣言とIBOutletを忘れずに@implementation MasterViewController- (void) tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSInd…

Master-Detail Applicationの遷移

iOS5標準テンプレートMaster-Detailのmasterのセルを選択した時のメソッド-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ DetailViewController *detailVC = [self.storyboard instantiateViewControllerWit…