NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

//
// ViewController.m
// _UITableView
//
// Created by STU 26 on 3/3/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 *asya;
@property (nonatomic,strong) NSMutableArray *avrupa;
@property (nonatomic,strong) NSMutableArray *afrika;
@end

@implementation ViewController

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

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

self.myTableView.delegate=self;
self.myTableView.dataSource=self;

self.asya=[[NSMutableArray alloc] initWithObjects:@"Çin",@"Japonya",@"Kazakistan", nil];

self.avrupa=[[NSMutableArray alloc] initWithObjects:@"İspanya",@"Portekiz",@"İtalya",@"Bosna-Hersek", nil];

self.afrika=[[NSMutableArray alloc] initWithObjects:@"Tunus",@"Fas", nil];

[self.view addSubview:self.myTableView];
}

-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{
if ([tableView isEqual:self.myTableView]) {
return 3;
}
return 0;
}


-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
if ([tableView isEqual:self.myTableView]) {
switch (section) {
case 0:
return [self.asya count];
break;
case 1:
return [self.avrupa count];
break;
case 2:
return [self.afrika count];
break;
}
}
return 0;
}

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

UITableViewCell *cell=nil;

if ([tableView isEqual:self.myTableView]) {
cell=[tableView dequeueReusableCellWithIdentifier:TableViewCellIdentifier forIndexPath:indexPath];

if (indexPath.section==0) {
cell.textLabel.text=[NSString stringWithFormat:@"%@",self.asya[(long)indexPath.row]];
} else if (indexPath.section==1){
cell.textLabel.text=[NSString stringWithFormat:@"%@",self.avrupa[(long)indexPath.row]];
}else if (indexPath.section==2){
cell.textLabel.text=[NSString stringWithFormat:@"%@",self.afrika[(long)indexPath.row]];
}


// cell.accessoryType=UITableViewCellAccessoryDetailButton;
// 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) {

if (indexPath.section==0) {
[self.asya removeObjectAtIndex:(long)indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
} else if (indexPath.section==1){
[self.avrupa removeObjectAtIndex:(long)indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}else if (indexPath.section==2){
[self.afrika removeObjectAtIndex:(long)indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}

}
}


//-(void) buttonClicked:(UIButton *) paramSender{
// __unused UITableViewCell *parentCell=(UITableViewCell *)[self superviewOfType:[UITableViewCell class] forView:paramSender];
//
// NSLog(@"%@",parentCell.textLabel.text);
//
//}

//-(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) tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
// NSLog(@"Index Path = %@",indexPath);
// UITableViewCell *cell=[tableView cellForRowAtIndexPath:indexPath];
// NSLog(@"%@",cell.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.