updated build and fixed an issue with the analyzer

This commit is contained in:
Diego Waxemberg 2014-10-23 23:16:24 -04:00
parent ef98976ebf
commit c0a3ae9371
4 changed files with 3 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -21,7 +21,7 @@
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>1</string> <string>5</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>
<string>public.app-category.games</string> <string>public.app-category.games</string>
<key>LSRequiresIPhoneOS</key> <key>LSRequiresIPhoneOS</key>

View File

@ -202,12 +202,14 @@ static StreamConfiguration* streamConfig;
- (void)viewDidAppear:(BOOL)animated - (void)viewDidAppear:(BOOL)animated
{ {
[super viewDidAppear:animated];
_mDNSManager = [[MDNSManager alloc] initWithCallback:self]; _mDNSManager = [[MDNSManager alloc] initWithCallback:self];
[_mDNSManager searchForHosts]; [_mDNSManager searchForHosts];
} }
- (void)viewDidDisappear:(BOOL)animated - (void)viewDidDisappear:(BOOL)animated
{ {
[super viewDidDisappear:animated];
[_mDNSManager stopSearching]; [_mDNSManager stopSearching];
} }