Hello, I just joined this group seeking some help in Objective-c code, i am following Stanford Objective c CS193P course, I am stuck at first assignment, in brief -> when i click on card i should get a random card from the deck, i have completed code following classwork but on cliking button i am getting ‘(null)’, i am trying to figure this out but still stuck, can any one help me or can guide me where (which forum/gitter) i can get help. Thanks in advance .
here is the code: https://github.com/iOSJMatharu/Matchismo/tree/master/Card%20Game
hello
i have a situation, i have a weview where i would like to play a html5 audio, it works but when it goes to background the audio stops
i have been trying to work with this example
AVAudioSession audioSession = [AVAudioSession sharedInstance];
BOOL ok;
NSError setCategoryError = nil;
ok = [audioSession setCategory:AVAudioSessionCategoryPlayback
error:&setCategoryError];
if (!ok) {
NSLog(@"%s setCategoryError=%@", PRETTY_FUNCTION, setCategoryError);
}
but i belongs to iOS 6 , now actually i'm working with iOS 9.2
when i add that configuration it gives errors, can you help me to understand this=
?