NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

//
// ViewController.m
// _UITableView
//
// Created by STU 26 on 2/28/17.
// Copyright (c) 2017 STU 26. All rights reserved.
//

#import "ViewController.h"

static NSString * TableViewCellIdentifier=@"MyCells";

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic,strong) UITableView *myTableView;
@property (nonatomic,strong) NSMutableArray *cities;
@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
self.myTableView=[[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];

[self.myTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:TableViewCellIdentifier];
self.myTableView.dataSource=self;

self.myTableView.delegate=self;
self.cities=[[NSMutableArray alloc] initWithObjects:@"Zonguldak",@"Bartın",@"Sinop",@"Samsun",@"Ordu",@"Giresun",@"Trabzon",@"Rize",@"Artvin",@"Gümüşhane", nil];
[self.view addSubview:self.myTableView];
}

-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{
return 1;
}

-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.cities count];
}

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:TableViewCellIdentifier forIndexPath:indexPath];



cell.textLabel.text=[NSString stringWithFormat:@"%@",self.cities[(long)indexPath.row]];

// UIButton *button=[UIButton buttonWithType:UIButtonTypeSystem];
//
// button.frame=CGRectMake(0.0f,0.0f,150.0f,25.0f);
//
// [button setTitle:@"Tamam" forState:UIControlStateNormal];
//
// [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
//
// cell.accessoryView=button;

return cell;
}

-(UITableViewCellEditingStyle) tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
return UITableViewCellEditingStyleDelete;
}

-(void) setEditing:(BOOL)editing animated:(BOOL)animated{
[super setEditing:editing animated:animated];
[self.myTableView setEditing:editing animated:animated];
}

-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if (editingStyle==UITableViewCellEditingStyleDelete) {

[self.cities removeObjectAtIndex:indexPath.row];

[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}
}

-(UILabel *) newLabelWithTitle:(NSString *) paramTitle{
UILabel *label=[[UILabel alloc] initWithFrame:CGRectZero];
label.text=paramTitle;
label.backgroundColor=[UIColor clearColor];
[label sizeToFit];
return label;
}

-(UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
if (section==0) {
return [self newLabelWithTitle:@"Güzel Karadeniz"];
}
return nil;
}

-(UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
if (section==0) {
NSUInteger c=[self.cities count];
NSString *s=[[NSString alloc] initWithFormat:@"%lu Karadeniz Bölgesi Şehri Listlenmiştir.",(unsigned long)c];
return [self newLabelWithTitle:s];
}
return nil;
}

-(CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if (section==0) {
return 50.0f;
}
return 0.0f;
}

-(CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
if (section==0) {
return 30.0f;
}
return 0.0f;
}

//-(UIView *) superviewOfType:(Class) paramSuperviewClass forView:(UIView *) paramView{
// if (paramView.superview!=nil) {
// if ([paramView.superview isKindOfClass:paramSuperviewClass]) {
// return paramView.superview;
// } else {
// return [self superviewOfType:paramSuperviewClass forView:paramView.superview];
// }
// }
// return nil;
//}
//
//-(void) buttonClicked:(UIButton *) sender{
// __unused UITableViewCell *cell=(UITableViewCell *)[self superviewOfType:[UITableViewCell class] forView:sender];
// NSLog(@"%@",cell.textLabel.text);
//}


//-(void) tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
// NSLog(@"Index path %@",indexPath);
//
// UITableViewCell *ownerCell=[tableView cellForRowAtIndexPath:indexPath];
// NSLog(@"Cell Title = %@",ownerCell.textLabel.text);
//}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.