class Jaspion::Miya::Objectivec::UITableView
Represents an Android
Activity template
Public Instance Methods
instance_methods()
click to toggle source
# File lib/jaspion/miya/objectivec/uitableview.rb, line 13 def instance_methods %(#{super} - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 0.f; } - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 0; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 0; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = nil; cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:@""]; if (!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@""]; } return cell; } - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { } ) end
protocols()
click to toggle source
Calls superclass method
Jaspion::Miya::Objectivec#protocols
# File lib/jaspion/miya/objectivec/uitableview.rb, line 9 def protocols super | ['UITableViewDataSource', 'UITableViewDelegate'] end
viewDidLoad()
click to toggle source
# File lib/jaspion/miya/objectivec/uitableview.rb, line 49 def viewDidLoad '' end