URLs from youtube playlist in iOS app - ios

I´m working on a class which retrieves links of a youtube playlist by using the YouTube Objective-C API.
Each URL is stored as a String strURL in an array called arrayURL, (for now) arrayURL is finally stored in arrayFinal, which I want to access from a different class.
Within the function I get the information I want (NSLog(#"%#", self.arrayFinal);). But when calling the function for example from another class (e.g. ViewController) I will always get an empty array back.
ViewController.m
YTDataHandler *youtubeObj = [YTDataHandler new];
[youtubeObj initYoutubeArray];
NSLog(#"%#", [youtubeObj arrayFinal]);
YTDataHandler.h
#import <Foundation/Foundation.h>
#interface YTDataHandler : NSObject
{
NSMutableArray *arrayFinal;
}
- (void)initYoutubeArray;
- (void)getYoutubeContent;
#property (nonatomic, retain) NSMutableArray *arrayFinal;
#end
YTDataHandler.m
#import "YTDataHandler.h"
#import "GTLServiceYouTube.h"
#import "GTLYouTube.h"
#import "GTLYouTubePlaylistSnippet.h"
#import "GTLYouTubeResourceId.h"
#implementation YTDataHandler
#synthesize arrayFinal;
- (void)initYoutubeArray {
self.arrayFinal = [[NSMutableArray alloc] init];
[self getYoutubeContent];
}
- (void)getYoutubeContent {
NSMutableArray *arrayURL = [[NSMutableArray alloc] init];
// Create a service object for executing queries
GTLServiceYouTube *service = [[GTLServiceYouTube alloc] init];
// API key
service.APIKey = #"YOUR_API_KEY";
// Create a query
GTLQueryYouTube *query = [GTLQueryYouTube queryForPlaylistItemsListWithPart : #"id, snippet, contentDetails"];
query.playlistId = #"UUa0XHGDbBL8re8UgO-OWNPA";
query.maxResults = 20;
query.type = #"video";
// Execute the query
GTLServiceTicket *ticket = [service executeQuery : query
completionHandler : ^(GTLServiceTicket *ticket, id object, NSError *error) {
// This callback block is run when the fetch completes
if (error == nil) {
GTLYouTubePlaylistItemListResponse *items = object;
// iteration of items and subscript access to items.
for (GTLYouTubePlaylistItem *item in items) {
// IDs of videos
NSString *strVideoId = [item.snippet.resourceId JSONValueForKey : #"videoId"];
// encode and extend the videoId, result as an URL
NSString *strEncoded = [strVideoId stringByAddingPercentEscapesUsingEncoding : NSUTF8StringEncoding];
NSString *strURL = [NSString stringWithFormat:#"http://www.youtube.com/watch?v=%#", strEncoded];
// store strURL
[arrayURL addObject : (#"%#", strURL)];
}
// finally store arrayURL
[self.arrayFinal addObject : (#"%#", arrayURL)];
NSLog(#"%#", self.arrayFinal);
} else {
NSLog(#"Error: %#", error);
}
}];
}
#end
What am I doing wrong in the // Execute the query-part?

In your view controller, when you make the call to getYoutubeContent on your YTDataHandler instance, you cannot expect the array to be immediately populated. It will be eventually populated when the query executes and the handler code is executed. In your handler code it always works because you are in the same thread, and you use arrayFinal when it is ready. In your view controller you need to wait until the array is ready, before you start using it. E.g. you could set a boolean flag on your YTDataHandler which your view controller can register a key-value observing callback (KVO), so that you can get automatically notified when the array is ready.
ps.
Why don't you use:
[arrayURL addObject: strURL];
instead of:
[arrayURL addObject : (#"%#", strURL)];
?

Related

Objective-C class object not mapping to array

How can I pass the event to the toDoArray? I'm not sure what I'm missing. Any help appreciated.
SDEventModel.h
#interface SDEventModel : AWSDynamoDBObjectModel <AWSDynamoDBModeling>
ViewController.h
#property (nonatomic, strong) NSArray *toDoArray;
ViewController.m
if (task.result) {
AWSDynamoDBPaginatedOutput *paginatedOutput = task.result;
for (SDEventModel *event in paginatedOutput.items) {
//Do something with event.
NSLog(#"Task results: %#", event);
[self.toDoArray arrayByAddingObject:event];
NSLog(#"To do array results: %#", self.toDoArray);
[self.tableview reloadData];
}
}
Here is the output of the NSLog.
Task results: <SDEventModel: 0x7faa88d81430> {
city = "New York";
image = "photo-22.jpg";
title = "Hang with friends";
}
To do array results: (null)
The arrayByAddingObject method returns another array with the added object, and does not append the same.
This is how the method is intended to be used:
self.toDoArray = [self.toDoArray arrayByAddingObject:event];
However, in your case, it seems that the array is not even initialized. So you need to do something like this as well:
-(void) viewDidLoad {
[super viewDidLoad];
self.toDoArray = #[];
}
Define toDoArray as NSMutableArray like this in ViewController.h
#property (nonatomic, strong) NSMutableArray *toDoArray;
Now in ViewController.m initialise that array and add objects of event into it
if (task.result) {
self.toDoArray = [NSMutableArray new];
AWSDynamoDBPaginatedOutput *paginatedOutput = task.result;
for (SDEventModel *event in paginatedOutput.items) {
//Do something with event.
NSLog(#"Task results: %#", event);
[self.toDoArray addObject:event];
}
NSLog(#"To do array results: %#", self.toDoArray);
[self.tableview reloadData];
}
Please check Whether the Array in which you are adding object is Mutable or not?
if it is not mutable, you can create a new array or convert existing array to Mutable Array using mutableCopy

App crashes logging "warning: could not load any Objective-C class information."

I am using Afnetworking version 3.0 and trying to load some data. The data is coming in the response object properly and I am trying to parse that in an NSMutableArray. However this is crashing giving me error-
"warning: could not load any Objective-C class information. This will significantly reduce the quality of type information available."
My Data Parsing class is following-
DataProcessing.h-
#import <Foundation/Foundation.h>
#import "Book.h"
#import <AFNetworking/AFHTTPSessionManager.h>
#import <MBProgressHUD/MBProgressHUD.h>
#interface DataProcessing : NSObject
-(void)getAllTheBooks;
-(void)setBookList:(NSMutableArray*)list;
-(NSMutableArray*)getBookList;
#end
DataProcessing.m:
#import "DataProcessing.h"
#interface DataProcessing(){
Book *individualBook;
}
#property(nonatomic, strong) NSMutableArray *bookList;
#property(nonatomic, strong) BookDetails *bookDetails;
#end
#implementation DataProcessing
-(void)getAllTheBooks{
NSMutableArray *bookList =[[NSMutableArray alloc]init];
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager GET:#"https://natasha....../items" parameters:nil progress:nil success:^(NSURLSessionTask *task, id responseObject) {
NSArray *bookCollectionArray = (NSArray*)responseObject;
for (NSDictionary *dict in bookCollectionArray) {
individualBook = [[Book alloc]init];
individualBook.bookID = [dict objectForKey:#"id"];
individualBook.bookLink = [dict objectForKey:#"link"];
individualBook.bookTitle = [dict objectForKey:#"title"];
[bookList addObject:individualBook];
}
[self setBookList:bookList];
} failure:^(NSURLSessionTask *operation, NSError *error) {
NSLog(#"Error: %#", error);
}];
}
-(void)setBookList:(NSMutableArray*)list{
self.bookList = [[NSMutableArray alloc]init];
self.bookList = list;
}
-(NSMutableArray*)getBookList{
return self.bookList;
}
#end
My Controller's viewDidLoad is as following-
- (void)viewDidLoad {
[super viewDidLoad];
DataProcessing *processing = [[DataProcessing alloc]init];
[processing getAllTheBooks];
NSMutableArray *array = [processing getBookList];
NSLog(#"%#", array);
}
When it crashes, it shows something like this -
Can anyone please help?
Hmm, I'm not 100% sure this would work but you could try initializing the mutable array in an init method, then just have the self.bookList = list; inside the setter method.
There's no need to allocate a new NSMutableArray inside of the bookList property's setter method, assign it to the bookList property, and then set it to the list being passed in. Instead of accessing the bookList property using self inside of the accessor methods it is advised to use the backing variable or ivar (instance variable) instead, which is prefixed by an underscore (e.g. _bookList) and known as direct access.
The reason you should use direct access instead of self.bookList is because self.bookList = [[NSMutableArray alloc] init] is translated to [self setBookList:[[NSMutableArray alloc] init]];, which means that inside of your setter method for the bookList property you will be calling the setter method again and causing a recursive loop. For example, the code you have as of now will translate in to something like the following:
-(void)setBookList:(NSMutableArray*)list{
[_bookList release];
[self setBookList:[[NSMutableArray alloc]init]];
[self setBookList:list];
[_bookList retain];
}
Thus, on the second call to setBookList:, you're trying to release the bookList property after you have already released it, which is why you're getting the EXC_BAD_ACCESS error. If you're not doing any type of validation or in need of custom code inside of the setter method you do not have to define it as the setter method will be automatically defined for you. However, for reference, below is the proper way to define your setter method without any modification (in compliance with the aforementioned and ARC):
- (void)setBookList:(NSMutableArray *)bookList
{
if (_bookList != bookList)
_bookList = bookList;
}

How can I pass a NSMutableDictionary value to multiple controllers in my storyboard?

I have an Objective-C controller called LinkedInLoginController and inside it I have a function that contains an NSDictionary called newResult as shown below:
- (void)requestMeWithToken:(NSString *)accessToken {
[self.client GET:[NSString stringWithFormat:#"https://api.linkedin.com/v1/people/~?oauth2_access_token=%#&format=json", accessToken] parameters:nil success:^(AFHTTPRequestOperation *operation, NSDictionary *result)
{
NSLog(#"current user %#", result);
NSMutableDictionary *newResult = [result mutableCopy]; //copies the NSDictionary 'result' to a NSMutableDictionary called 'newResult'
[newResult setObject: [newResult objectForKey: #"id"] forKey: #"AppUserID"]; //copies the value assigned to key 'id', to 'AppUserID' so the database can recognize it
[newResult removeObjectForKey: #"id"]; //removes 'id' key and value
LinkedInLoginJSON *instance= [LinkedInLoginJSON new]; //calls LinkedInPost method from LinkedInLoginJSON controller
[instance LinkedInPost:newResult];
}
failure:^(AFHTTPRequestOperation *operation, NSError *error)
{
NSLog(#"failed to fetch current user %#", error);
}
];
[self performSegueWithIdentifier:#"toHotTopics" sender: self]; //Sends user on to Trending page after they sign in with LinkedIn
}
I am trying to pass the key value for AppUserID to four different Swift ViewControllers. What is the best way to do this? Passing it over with a segueway? I tried calling it directly from NSDictionary using this guide but was unsuccessful: http://mobiforge.com/design-development/using-objective-c-and-swift-together-ios-apps
Fortunately Obj-C and Swift are co-compatible at the moment (from what I understand).
In Obj-C I would create a new subclass of NSObject, maybe MySharedValues, so the header would look like this:
#interface MySharedValues : NSObject
#property (nonatomic, strong) id appUserId;
+(instancetype)defaultInstance;
#end
And the implementation would look like:
#implementation
+(instancetype)defaultInstance{
static MySharedValues *obj = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
obj = [[self alloc] init];
});
return obj;
}
#end
Then you can import #import "MySharedValues.h" into the headers of all your controllers. To access or set the value, you would call
[MySharedValues defaultInstance].appUserId;
Create a singleton, new file->cocoaclass subclass of nsobject
in .h file
#import <Foundation/Foundation.h>
#interface ShowTimer : NSObject
{
NSMutableDictionary *passed;
}
#property (nonatomic, retain) NSMutableDictionary *passed;
+ (id)sharedManager;
#end
.m file
#import "ShowTimer.h"
#implementation ShowTimer
#synthesize passed;
#pragma mark Singleton Methods
+ (id)sharedManager {
static ShowTimer *sharedMyManager = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedMyManager = [[self alloc] init];
});
return sharedMyManager;
}
- (id)init {
if (self = [super init]) {
}
return self;
}
- (void)dealloc {
// Should never be called, but just here for clarity really.
}
#end
in your view controllers import #import "ShowTimer.h" then set or get the object it.
set your object
ShowTimer *timer=[ShowTimer sharedManager];
timer.passed=newResult;
get your object
ShowTimer *timer=[ShowTimer sharedManager];
NSMutableDictionary *newResult =timer.passed;
Sorry about the naming, I just copy and pasted another class to answer your question but you can change the naming if you want....
EDIT:
When you add an objective-c class to swift it will as you to bridging options then if you say yes it will add -Bridging-Header.h to your project in that header just call #import "ShowTimer.h"
in your swift view controller use the code like this
var companies:NSMutableDictionary = ["AAPL" : "Apple Inc", "GOOG" : "Google Inc", "AMZN" : "Amazon.com, Inc", "FB" : "Facebook Inc"]
var instance:ShowTimer = ShowTimer.sharedManager() as ShowTimer
instance.passed=companies
var dict:NSMutableDictionary=instance.passed
NSLog("%#", dict);
I have never written swift code before but just research lit bit if my approach doesnt work for you

how to store classobject that returns self

I am making a NSObjectClass that has a method in it that returns self.
This is what it looks like roughtly
storageclass.h
// storageclass vars go here
- (storageclass)assignData:(NSDictionary *)dictionary;
storageclass.m
//#synthesise everything
- (storageclass)assignData:(NSDictionary *)dictionary {
//assign values from dictionary to correct var types (i.e. NSString, Int, BOOL)
//example
Side = [dictionary valueForKey:#"Side"];
return self;
}
Then what I want to do is use this class by passing a NSDictionary var through its method to return a object of type storageclass that I can then use to access the vars using dot notation.
this is how I am trying to access this class at the moment
accessorViewController.h
storageclass *store;
#property (strong, nonatomic) storageclass *store;
accessorViewController.m
#synthesize store;
- (void)getstoreready {
[store assignData:someDictionary];
nslog(#"%#", store);
}
this NSLog returns nothing and in the debugger all of stores class vars are empty showing nothing has been assigned. I am 100% positive the dictionary vars being used in the assignData method have the correct valueForKey values.
I think it has something to do with how I am using it here [store assignData:someDictionary]; how do i catch the turned data so I can use it?
any help would be appreciated.
The store object is never initialized so it will be nil thats obvious isn't it. Initialize the store object first, then call its instance methods onto it. And by doing that, you'll have a storageclass object which is properly assigned with some dictionary already.
And if you want to have a storageclass object like your code shows, you should make your (storageclass)assignData:(NSDictionary *)dictionary method a class method instead of an instance method by putting a + sign
+(storageclass*)assignData:(NSDictionary *)dictionary;
Then properly initialize it and assign the data (dictionary to variables) accordingly and return it to the caller. For example :-
in .m file
+(storageclass*)assignData:(NSDictionary *)dictionary{
storageclass *test = [[storageclass alloc] init];
if (test) {
test.someDict = dictionary;
}
return test;
}
Then use this class method in your view controller as
- (void)getstoreready {
store = [storageClass assignData:someDictionary];
nslog(#"%#", store);
}
Also Do follow the naming convention for classes and instances. A class's name must start with a capital letter only and the opposite for any class instances.
In User.h
#interface User : NSObject
#property (nonatomic, copy) NSString *name;
- (id)initWithDictionary:(NSDictionary *)dictionary;
+ (NSArray *)usersFromArray:(NSArray *)array;
#end
In User.m
- (id)initWithDictionary:(NSDictionary *)dictionary
{
self = [super init];
if (self) {
if (dictionary)
{
self.name = dictionary[#"kUserName"];
}
}
return self;
}
+ (NSArray *)usersFromArray:(NSArray *)array
{
NSMutableArray *users = [NSMutableArray array];
for (NSDictionary *dict in array) {
User *user = [[User alloc]initWithDictionary:dict];
[users addObject:user];
}
NSSortDescriptor *descriptor = [NSSortDescriptor sortDescriptorWithKey:#"name"
ascending:YES];
return [users sortedArrayUsingDescriptors:#[descriptor]];
}
In ViewController.m
import "User.h"
self.currentArray = [User usersFromArray:array];

Get values from NSDictionaries

I have the following code:
NSDictionary *dict = #[#{#"Country" : #"Afghanistan", #"Capital" : #"Kabul"},
#{#"Country" : #"Albania", #"Capital" : #"Tirana"}];
I want to list many countries and capitals, and then randomize i.e a country and put it on the screen, then the user should be able to pick the correct capital..
How to I put the Country? Like dict.Country[0] or something like that?
What is wrong with the code? I get the error "Initializer element is not a compile-time constant" and the warning "Incompatible pointer types initializing 'NSDictionary *_strong' with an expression of type 'NSArray *'.
Can I make a third String in the Dictionary, containing a flag file.. for example
#"Flagfile" : #"Albania.png"
and later put it in a image view?
I want like a loop with a random number I (for example) and put like (I know this is not right, but I hope you get the point)
loop..
....
text= dict.Country[I];
button.text= dict.Capital[I];
Imageview=dict.Flagfile[I];
.....
....
Your top level element is an NSArray (#[], with square brackets, makes an array) of two NSDictionary's. To access an attribute in one of the dictionaries, you would do array[index][key], e.g. array[0][#"Country"] would give you #"Afghanistan". If you did NSArray *array = ... instead of NSDictionary *dict = ...
If you want to pick a country at random, you can get a random number, get it mod 2 (someInteger % 2) and use that as your index, e.g. array[randomNumber % 2][#"Country"] will give you a random country name from your array of dictionaries.
If you store an image name in the dictionaries, you can load an image of that name using UIImage's +imageNamed: method.
Here's more complete instruction on mbuc91's correct idea.
1) create a country
// Country.h
#interface Country : NSObject
#property(strong,nonatomic) NSString *name;
#property(strong,nonatomic) NSString *capital;
#property(strong,nonatomic) NSString *flagUrl;
#property(strong,nonatomic) UIImage *flag;
// this is the only interesting part of this class, so try it out...
// asynchronously fetch the flag from a web url. the url must point to an image
- (void)flagWithCompletion:(void (^)(UIImage *))completion;
#end
// Country.m
#import "Country.h"
#implementation Country
- (id)initWithName:(NSString *)name capital:(NSString *)capital flagUrl:(NSString *)flagUrl {
self = [self init];
if (self) {
_name = name;
_capital = capital;
_flagUrl = flagUrl;
}
return self;
}
- (void)flagWithCompletion:(void (^)(UIImage *))completion {
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:self.flagUrl]];
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if (data) {
UIImage *image = [UIImage imageWithData:data];
completion(image);
} else {
completion(nil);
}
}];
}
#end
2) Now, in some other class, use the Country
#import "Country.h"
- (NSArray *)countries {
NSMutableArray *answer = [NSMutableArray array];
[answer addObject:[[Country alloc]
initWithName:#"Afghanistan" capital:#"Kabul" flagUrl:#"http://www.flags.com/afgan.jpg"]];
[answer addObject:[[Country alloc]
initWithName:#"Albania" capital:#"Tirana" flagUrl:#"http://www.flags.com/albania.jpg"]];
return [NSArray arrayWithArray:answer];
}
- (id)randomElementIn:(NSArray *)array {
NSUInteger index = arc4random() % array.count;
return [array objectAtIndex:index];
}
-(void)someMethod {
NSArray *countries = [self countries];
Country *randomCountry = [self randomElementIn:countries];
[randomCountry flagWithCompletion:^(UIImage *flagImage) {
// update UI, like this ...
// self.flagImageView.image = flagImage;
}];
}
You cannot initialize an NSDictionary in that way. An NSDictionary is an unsorted set of key-object pairs - its order is not static, and so you cannot address it as you would an array. In your case, you probably want an NSMutableDictionary since you will be modifying its contents (see Apple's NSMutableDictionary Class Reference for more info).
You could implement your code in a few ways. Using NSDictionaries you would do something similar to the following:
NSMutableDictionary *dict = [[NSMutableDictionary alloc]
initWithObjectsAndKeys:#"Afghanistan", #"Country",
#"Kabul", #"Capital", nil];
You would then have an array of dictionaries, with each dictionary holding the details of one country.
Another option would be to create a simple model class for each country and have an array of those. For example, you could create a Class named Country, with Country.h as:
#import <Foundation/Foundation.h>
#interface Country : NSObject
#property (nonatomic, retain) NSString *Name;
#property (nonatomic, retain) NSString *Capital;
//etc...
#end

Resources