One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #pragma mark - Table view data source | |
| - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { | |
| // Return the number of sections. | |
| return 1; | |
| } | |
| - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { | |
| // Return the number of rows in the section. | |
| return array_Strings.count; | |
| } |
| def firstchar(string) | |
| result = string.split.map{|w|w[0]}.join | |
| puts result | |
| end | |
| firstchar("what you see is what you get") |