NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

//
// ViewController.m
// ProductsList
//
// Created by STU 28 on 29/04/16.
// Copyright (c) 2016 plato.edu.tr. All rights reserved.
//

#import "ViewController.h"
static NSString *myCellIdentifier=@"SimleCells";
//UI CELL lerden oluşur. Cell oluştururken string tipte bir değişkene ihtiyaç duyar.

@interface ViewController()<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic,strong) UITableView *myTableView;//
@property (nonatomic,strong) NSMutableArray *allRows;// Generic bir tiptir.
@property (nonatomic,strong) NSArray *objects;//Simple Array gibidir örnek int[]

@end

@interface ViewController ()

@end

@implementation ViewController


-(id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{
self=[super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {

}
return self;

}


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

}


-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if (editingStyle==UITableViewCellEditingStyleDelete) {
[self.allRows removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
NSString *selectValue=[[NSString alloc]initWithFormat:@"%@",[self.objects[indexPath.row]objectForKey:@"Id"]];
int productId=[selectValue intValue];
NSString *urlStrng= [[NSString alloc]initWithFormat:@"http://holasa-001-site1.dtempurl.com/Service.svc/urunler/DeleteProduct?id=%d",productId];
NSURL *url=[NSURL URLWithString:urlStrng];
NSMutableURLRequest *urlRequest=[NSMutableURLRequest requestWithURL:url];
[urlRequest setTimeoutInterval:30.0f];
[urlRequest setHTTPMethod:@"POST"];
NSOperationQueue *queue=[[NSOperationQueue alloc]init];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response,NSData *data,NSError *error){

if ([data length]>0&&error==nil) {
NSString *html=[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"HTML = %@",html);

}else if ([data length]==0&&error==nil){
NSLog(@"İşlem Başarılı");
}else if (error!=nil)
NSLog(@"Error = %@",error);
}];
}

}

-(NSMutableArray *)allRows{
NSURL *url=[[NSURL alloc]initWithString:@"http://holasa-001-site1.dtempurl.com/Service.svc/urunler"];
NSURLRequest *urlRequest=[NSURLRequest requestWithURL:url];//URL den talepte bulunduk/
NSData *urlData;

NSURLResponse *response; // requestte bulundugumuzda response gerekecek.
NSError *error=nil; //
urlData=[NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:&error];
NSMutableArray *object=[NSJSONSerialization JSONObjectWithData:urlData options:1 error:&error];// Serilize ettik

if (_allRows==nil) {
const NSUInteger numberofItems=[object count];// _allRows olan yukarıdaki dizimiz.
_allRows=[[NSMutableArray alloc]initWithCapacity:numberofItems];
for (NSUInteger counter; counter<numberofItems; counter++) {
[_allRows addObject:[[NSString alloc] initWithFormat:@"%@",[object[counter]objectForKey:@"Ad"]]];
}

}
return _allRows;
}


// sextion içerisinde (UITABLE içinde) kaç tane satır olacagı belırlenır
-(NSInteger) tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
return [self.allRows count];

self.myTableView=[[UITableView alloc]initWithFrame:CGRectMake(0, 60, self.view.bounds.size.width, self.view.bounds.size.height) style:UITableViewStylePlain];
[ self.myTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:myCellIdentifier];
self.myTableView.dataSource=self;
self.myTableView.delegate=self;
self.myTableView.autoresizingMask=UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
[self.view addSubview:self.myTableView];
}


-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell=nil;
cell=[tableView dequeueReusableCellWithIdentifier:myCellIdentifier forIndexPath:indexPath];
cell.textLabel.text=self.allRows[indexPath.row];
return cell;

}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}

- (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.