UITableViewCellAccessoryType

UITableViewCellAccessoryDisclosureIndicator

Controllerのソースで下記のようにするとセルの右側に>アイコンが表示される。

- (UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellAccessoryDisclosureIndicator;
}


UITableViewCellAccessoryNone

Controllerのソースで下記のようにするとセルの右側のアイコンは表示されなくなる。

- (UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"MasterViewController#tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath") ;
    
	return UITableViewCellAccessoryNone;
}


UITableViewCellAccessoryDetailDisclosureButton

Controllerのソースで下記のようにするとセルの右側にまるい>アイコンが表示される。

- (UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
	
	return UITableViewCellAccessoryDetailDisclosureButton ;
}


UITableViewCellAccessoryCheckmark

Controllerのソースで下記のようにするとセルの右側にチェックマークアイコンが表示される。

- (UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
	
	return UITableViewCellAccessoryCheckmark ;
}

AppStoreで販売するための手続き (7)ADCへ申請証明書と登記簿謄本をFAX

午前中、法務局へ行き登記簿謄本を発行してもらい。
先程、ADCに申請証明書と会社の登記簿謄本をFAXで送付した。


次は何だ?
取りあえず、待ちか?


IRSの方からは、まだ何も届かない。
年末にFAXしたのでもう少し待ってみよう。