Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
objc_msgSend() selector name: retain
ProductBuildVersion: 7A220
Global Trace Buffer (reverse chronological seconds):
4.633771 CFNetwork 0x00007fff9276c07b TCP Conn 0x7faa850522f0 SSL Handshake DONE
5.179289 CFNetwork 0x00007fff9276bf57 TCP Conn 0x7faa850522f0 starting SSL negotiation
5.180699 CFNetwork 0x00007fff9276a927 TCP Conn 0x7faa850522f0 complete. fd: 51, err: 0
5.184651 CFNetwork 0x00007fff927f9121 TCP Conn 0x7faa850522f0 event 1. err: 0
5.433831 CFNetwork 0x00007fff92769bf7 TCP Conn 0x7faa850522f0 started
5.482427 CFNetwork 0x00007fff9272d75e Creating default cookie storage with process/bundle identifier
5.482427 CFNetwork 0x00007fff9272d6f6 Faulting in CFHTTPCookieStorage singleton
5.482427 CFNetwork 0x00007fff9272d585 Faulting in NSHTTPCookieStorage singleton
5.520045 CFNetwork 0x00007fff9282b3b4 NSURLConnection finished with error - code -1100
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=
?