mirror of https://github.com/opa334/TrollStore.git
remove some leftover logs
This commit is contained in:
parent
029a80f4b9
commit
28a644e38c
|
@ -10,13 +10,10 @@
|
||||||
{
|
{
|
||||||
for(UIOpenURLContext* context in URLContexts)
|
for(UIOpenURLContext* context in URLContexts)
|
||||||
{
|
{
|
||||||
NSLog(@"openURLContexts %@", context.URL);
|
|
||||||
NSURL* url = context.URL;
|
NSURL* url = context.URL;
|
||||||
|
|
||||||
if(url)
|
if(url)
|
||||||
{
|
{
|
||||||
NSLog(@"ts_test url: %@", url);
|
|
||||||
NSLog(@"ts_test url.scheme: %@", url.scheme);
|
|
||||||
if([url isFileURL])
|
if([url isFileURL])
|
||||||
{
|
{
|
||||||
[url startAccessingSecurityScopedResource];
|
[url startAccessingSecurityScopedResource];
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
|
|
||||||
for(NSURLQueryItem* queryItem in components.queryItems)
|
for(NSURLQueryItem* queryItem in components.queryItems)
|
||||||
{
|
{
|
||||||
NSLog(@"ts_test queryItem %@ = %@", queryItem.name, queryItem.value);
|
|
||||||
if([queryItem.name isEqualToString:@"url"])
|
if([queryItem.name isEqualToString:@"url"])
|
||||||
{
|
{
|
||||||
URLStringToInstall = queryItem.value;
|
URLStringToInstall = queryItem.value;
|
||||||
|
@ -82,7 +78,6 @@
|
||||||
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
|
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
|
||||||
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
|
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
|
||||||
|
|
||||||
NSLog(@"scene:%@ willConnectToSession:%@ options:%@", scene, session, connectionOptions);
|
|
||||||
UIWindowScene* windowScene = (UIWindowScene*)scene;
|
UIWindowScene* windowScene = (UIWindowScene*)scene;
|
||||||
_window = [[UIWindow alloc] initWithWindowScene:windowScene];
|
_window = [[UIWindow alloc] initWithWindowScene:windowScene];
|
||||||
_rootViewController = [[TSRootViewController alloc] init];
|
_rootViewController = [[TSRootViewController alloc] init];
|
||||||
|
@ -130,7 +125,6 @@
|
||||||
|
|
||||||
- (void)scene:(UIScene *)scene openURLContexts:(NSSet<UIOpenURLContext *> *)URLContexts
|
- (void)scene:(UIScene *)scene openURLContexts:(NSSet<UIOpenURLContext *> *)URLContexts
|
||||||
{
|
{
|
||||||
NSLog(@"scene:%@ openURLContexts:%@", scene, URLContexts);
|
|
||||||
[self handleURLContexts:URLContexts scene:(UIWindowScene*)scene];
|
[self handleURLContexts:URLContexts scene:(UIWindowScene*)scene];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue