@property (nonatomic,strong) UITableView *myTableView; @property (nonatomic,strong) NSMutableArray * : Notes">

NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

#import "ViewController.h"

static NSString * TableViewCellIdentifier=@"MyCells";

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic,strong) UITableView *myTableView;
@property (nonatomic,strong) NSMutableArray *bilisimBolumleri;
@property (nonatomic,strong) NSMutableArray *saglikBolumleri;
@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.bilisimBolumleri=[[NSMutableArray alloc] initWithObjects:@"Bilgisayar Programcılığı",@"Bil. Des. Tas. Anim.",@"İnternet ve Ağ Teknolojileri",nil];
self.saglikBolumleri=[[NSMutableArray alloc] initWithObjects:@"Tıbbi Labor.",@"Tıbbi Görüntüleme",@"Acil ilkyardım",nil];
[self.view addSubview:self.myTableView];
}

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

-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
if(section==0)
{
return [self.bilisimBolumleri count];
}
else{
return [self.saglikBolumleri count];
}
}


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

if(indexPath.section==0)
{
cell.textLabel.text=[NSString stringWithFormat:@"%@",self.bilisimBolumleri[(long)indexPath.row]];
}
else{
cell.textLabel.text=[NSString stringWithFormat:@"%@",self.saglikBolumleri[(long)indexPath.row]];
}


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.bilisimBolumleri removeObjectAtIndex:indexPath.row];
}
else if(indexPath.section==1)
{
[self.saglikBolumleri 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:@"Bilişim Bölümleri"];
}
else if (section==1) {
return [self newLabelWithTitle:@"Sağlık Bölümleri"];
}
return nil;
}

-(UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
if (section==0) {
NSUInteger c=[self.bilisimBolumleri count];
NSString *s=[[NSString alloc] initWithFormat:@"%lu Bilişim bölümü listelenmiştir.",(unsigned long)c];
return [self newLabelWithTitle:s];
}
else if (section==1) {
NSUInteger c=[self.bilisimBolumleri count];
NSString *s=[[NSString alloc] initWithFormat:@"%lu Sağlık bölümü listelenmiş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;
}


- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
@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.