多项选择题
下面哪些方法是UITableView的delegate方法:()。
A.-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section;
B.-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath;
C.-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath;
D.-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath;
相关考题
-
单项选择题
iOS中,可以从一个应用(如APP01)跳转到另外一个应用(如APP02),如果要在跳转的过程中,将username和password这两个参数传递给APP02,下列代码正确的是:()。
A.NSURL* open_URL_A=[NSURL URLWithString:@"APP02://username=test01&password=123456"]
B.NSURL* open_URL_A=[NSURL URLWithString:@"APP02://username=test01,password=123456"]
C.NSURL* open_URL_A=[NSURL URLWithString:@"APP02://username=test01//password=123456"]
D.NSURL* open_URL_A=[NSURL URLWithString:@"APP02://username=test01#password=123456"] -
单项选择题
关于支付,应用在接入Ping++SDK时,需要的三个参数不包括()。
A.API Key
B.应用ID
C.Notify URL
D.开发者账号 -
单项选择题
下列哪个不是iOS提供的tableview cell分割线风格?()
A.UITableViewCellSeparatorStyleNone
B.UITableViewCellSeparatorStyleSingleLine
C.UITableViewCellSeparatorStyleSingleLineShadow
D.UITableViewCellSeparatorStyleSingleLineEtched
