NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

//
// SongByLanguageViewController.m
// _MusicStore
//
// Created by STU 43 on 15/09/38 AH.
// Copyright (c) 1438 AH STU 43. All rights reserved.
//

#import "ListLanguageViewController.h"
#import "SongByLanguageViewController.h"

@interface SongByLanguageViewController ()<UITableViewDataSource,UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UILabel *lblLanguage;
@property (strong,nonatomic) NSString *language;
@property (strong, nonatomic) IBOutlet UITableView *languagesTableView;
@property (nonatomic,strong) NSMutableArray *songs;
@end
static NSString *cellIdentifier=@"CellIdentifier";
@implementation SongByLanguageViewController

-(void) setText:(NSString *)paramText{
self.title=paramText;
self.language=paramText;
}

-(NSMutableArray *) getProductsData{

NSString *urlString=[NSString stringWithFormat:@"http://musicservice-001-site1.dtempurl.com/MusicService.svc/songByLanguage?language=%@",self.language];

NSString *webUrlStr=[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSURL *url=[NSURL URLWithString:webUrlStr];
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url];
[request setTimeoutInterval:30.0f];
[request setHTTPMethod:@"GET"];
NSURLResponse *response=nil;
NSError *error=nil;
NSData *data=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
self.songs=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers | NSJSONReadingMutableLeaves error:&error];
return self.songs;
}

- (void)viewDidLoad {
[super viewDidLoad];
self.languagesTableView.dataSource=self;
self.languagesTableView.delegate=self;
[self.languagesTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellIdentifier];
}
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self getProductsData].count;
}

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

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

UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

if (cell==nil) {
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}

cell.textLabel.text=[NSString stringWithFormat:@"%@",[self.songs valueForKeyPath:@"SongName"][indexPath.row]];




return cell;

}


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


@end


-------

//
// SongByGenreViewController.m
// _MusicStore
//
// Created by STU 43 on 15/09/38 AH.
// Copyright (c) 1438 AH STU 43. All rights reserved.
//

#import "ListGenreViewController.h"
#import "SongByGenreViewController.h"

@interface SongByGenreViewController ()<UITableViewDataSource,UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UILabel *lblGenre;
@property (strong,nonatomic) NSString *genre;
@property (strong, nonatomic) IBOutlet UITableView *genresTableView;
@property (nonatomic,strong) NSMutableArray *songs;
@end
static NSString *cellIdentifier=@"CellIdentifier";
@implementation SongByGenreViewController

-(void) setText:(NSString *)paramText{
self.title=paramText;
self.genre=paramText;
}

-(NSMutableArray *) getProductsData{

NSString *urlString=[NSString stringWithFormat:@"http://musicservice-001-site1.dtempurl.com/MusicService.svc/songByGenre?genre=%@",self.genre];

NSString *webUrlStr=[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSURL *url=[NSURL URLWithString:webUrlStr];
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url];
[request setTimeoutInterval:30.0f];
[request setHTTPMethod:@"GET"];
NSURLResponse *response=nil;
NSError *error=nil;
NSData *data=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
self.songs=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers | NSJSONReadingMutableLeaves error:&error];
return self.songs;
}

- (void)viewDidLoad {
[super viewDidLoad];
self.genresTableView.dataSource=self;
self.genresTableView.delegate=self;
[self.genresTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellIdentifier];
}
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self getProductsData].count;
}

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

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

UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

if (cell==nil) {
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}

cell.textLabel.text=[NSString stringWithFormat:@"%@",[self.songs valueForKeyPath:@"SongName"][indexPath.row]];




return cell;

}

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

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/

@end

-----------

//
// SongByArtistViewController.m
// _MusicStore
//
// Created by STU 43 on 15/09/38 AH.
// Copyright (c) 1438 AH STU 43. All rights reserved.
//

#import "ListArtistViewController.h"
#import "SongByArtistViewController.h"

@interface SongByArtistViewController ()<UITableViewDataSource,UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UILabel *lblArtist;
@property (strong,nonatomic) NSString *artistName;
@property (strong, nonatomic) IBOutlet UITableView *artistsTableView;
@property (nonatomic,strong) NSMutableArray *songs;
@end
static NSString *cellIdentifier=@"CellIdentifier";
@implementation SongByArtistViewController

-(void) setText:(NSString *)paramText{
self.title=paramText;
self.artistName=paramText;
}

-(NSMutableArray *) getProductsData{

NSString *urlString=[NSString stringWithFormat:@"http://musicservice-001-site1.dtempurl.com/MusicService.svc/songByArtist?artistName=%@",self.artistName];

NSString *webUrlStr=[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSURL *url=[NSURL URLWithString:webUrlStr];
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url];
[request setTimeoutInterval:30.0f];
[request setHTTPMethod:@"GET"];
NSURLResponse *response=nil;
NSError *error=nil;
NSData *data=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
self.songs=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers | NSJSONReadingMutableLeaves error:&error];
return self.songs;
}

- (void)viewDidLoad {
[super viewDidLoad];
self.artistsTableView.dataSource=self;
self.artistsTableView.delegate=self;
[self.artistsTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellIdentifier];
}
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self getProductsData].count;
}

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

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

UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

if (cell==nil) {
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}

cell.textLabel.text=[NSString stringWithFormat:@"%@",[self.songs valueForKeyPath:@"SongName"][indexPath.row]];




return cell;

}

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

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/

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