Ich habe die Bereitstellung doppelt überprüft und es ist alles richtig (genau das gleiche wie das, was ich für Xamarin verwendet habe) < /li>
Ich habe überprüft, ob ich meine Berechtigungsgruppen, Share -Gruppen und Bündelnamen korrigieren kann. Zugriff < /li>
< /ul>
Da es in Debug funktioniert und in Xamarin in der Produktion funktioniert, gehe ich davon aus, dass es sich eher um ein Konfigurationsproblem als um ein Codeproblem handelt. Daher können die folgenden Dateien schuld sein (?):
Hier ist die Haupt -App CSproj:
Code: Select all
net9.0-ios
Exe
MyApp
true
true
enable
enable
MyApp
com.MyApp.MyApp
1.0
1
12.2
13.1
21.0
10.0.17763.0
10.0.17763.0
6.5
true
false
Apple Development: Created via API (XXXXXXXXXX)
VS: com.MyCompany.MyApp Development
...
...
...
...
...
Code: Select all
net9.0-ios
Library
com.MyCompany.MyApp.ShareExtension
enable
true
13.0
true
full
true
false
Apple Development: Created via API (XXXXXXXXXX)
VS: com.MyCompany.MyApp.ShareExtension Development
Code: Select all
UIDeviceFamily
1
2
UISupportedInterfaceOrientations
UIInterfaceOrientationPortrait
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
UISupportedInterfaceOrientations~ipad
UIInterfaceOrientationPortrait
UIInterfaceOrientationPortraitUpsideDown
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
MinimumOSVersion
12.2
CFBundleDisplayName
MyApp
CFBundleIdentifier
com.MyCompany.MyApp
CFBundleName
MyApp
XSAppIconAssets
Assets.xcassets/appicon.appiconset
UILaunchStoryboardName
LaunchScreen
UIViewControllerBasedStatusBarAppearance
NSExtensionPointIdentifier
com.apple.share-services
CFBundleURLTypes
CFBundleURLName
com.MyCompany.MyApp
CFBundleURLSchemes
shareto
CFBundleTypeRole
None
NSAppleMusicUsageDescription
Select audio file for sheet
NSMicrophoneUsageDescription
Record audio loop
UIBackgroundModes
audio
CFBundleShortVersionString
1.0.001
CFBundleVersion
1
ITSAppUsesNonExemptEncryption
UIFileSharingEnabled
Code: Select all
CFBundleDevelopmentRegion
en
CFBundleDisplayName
MyApp
CFBundleIdentifier
com.MyCompany.MyApp.ShareExtension
CFBundleInfoDictionaryVersion
6.0
CFBundleName
com.MyCompany.MyApp.ShareExtension
CFBundlePackageType
XPC!
CFBundleSignature
????
MinimumOSVersion
13.0
NSExtension
NSExtensionAttributes
NSExtensionActivationRule
NSExtensionActivationSupportsFileWithMaxCount
1
NSExtensionActivationSupportsImageWithMaxCount
1
NSExtensionActivationSupportsMovieWithMaxCount
0
NSExtensionActivationSupportsText
NSExtensionActivationSupportsWebURLWithMaxCount
1
NSExtensionPrincipalClass
CodeBasedViewController
NSExtensionPointIdentifier
com.apple.share-services
CFBundleURLTypes
CFBundleURLName
URL Type 1
CFBundleTypeRole
Editor
CFBundleShortVersionString
1.0.001
ITSAppUsesNonExemptEncryption
CFBundleVersion
001
< /code>
Was kann ich tun, um das zu debuggen? Es ist ein unglaublich schwieriges [url=viewtopic.php?t=26065]Problem[/url] zu lösen, insbesondere angesichts der 20-30-minütigen Kompilierungszeiten, was bedeutet, dass ich nur 2 oder 3 verschiedene Problemen mit Problemen pro Stunde ausprobieren kann, was es schwierig macht, sinnvolle Fortschritte zu erzielen. Code.using System.IO.Compression;
using System.Text;
using System.Web;
using CoreGraphics;
using Foundation;
using Microsoft.Maui.Platform;
using MobileCoreServices;
using UIKit;
namespace ShareExtension.iOS
{
[Register("CodeBasedViewController")]
internal class CodeBasedViewController : UIViewController
{
UILabel lbHeader;
UIView dialog;
public CodeBasedViewController()
{
}
const int Version = 2;
NSString VERSION = new NSString("version");
NSString FILEPATH = new NSString("filepath");
public static Color Grey700 = Color.FromHex("#ff616161");
public static Color Grey800 = Color.FromHex("#ff424242");
public static Color TitleTextColor = Grey700;
public static Color EditorTextColor = Grey800;
public override async void ViewDidLoad()
{
base.ViewDidLoad();
InitUI();
}
void InitUI()
{
//dialog
dialog = new UIView(new CGRect(50, 150, 300, 200));
dialog.BackgroundColor = Colors.GhostWhite.ToPlatform();
dialog.Layer.CornerRadius = 8;
dialog.Layer.MasksToBounds = true;
//header
lbHeader = new UILabel(new CGRect(60, 60, 150, 30));
lbHeader.TextAlignment = UITextAlignment.Left;
lbHeader.BackgroundColor = Colors.Transparent.ToPlatform();
lbHeader.LineBreakMode = UILineBreakMode.WordWrap;
lbHeader.Lines = 0;
lbHeader.Text = "This is a title";
lbHeader.TextColor = TitleTextColor.ToPlatform();
//view
View.AddSubview(dialog);
dialog.AddSubview(lbHeader);
}
}
}
Die Aktien -Ext stürzen die App nicht ab, sodass keine Crash -Protokolle generiert werden. Hier ist jedoch ein Ausdruck des Protokolls für einen anderen Absturz, der passiert, wenn die App in den Hintergrund verschoben wird. Ich bin mir nicht sicher, ob dies verwandt ist: < /p>
Code: Select all
Incident Identifier: 2076FE25-A4BF-45A9-8428-1E74FC70BCA5
Hardware Model: iPhone10,6
Process: MyApp [34247]
Path: /private/var/containers/Bundle/Application/D3520EA3-64C3-43D2-AD4D-1F8F07AF4266/MyApp.app/MyApp
Identifier: com.MyCompany.MyApp
Version: 2.0.462 (462)
AppStoreTools: 16F7
AppVariant: 1:iPhone10,6:16
Beta: YES
Code Type: ARM-64 (Native)
Role: Background
Parent Process: launchd [1]
Coalition: com.MyCompany.MyApp [707]
Date/Time: 2025-08-15 16:23:45.8767 +0800
Launch Time: 2025-08-15 16:21:59.7450 +0800
OS Version: iPhone OS 16.7.11 (20H360)
Release Type: User
Baseband Version: 6.01.01
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x1bdfd940c __exceptionPreprocess + 160 (NSException.m:202)
1 libobjc.A.dylib 0x1b72b5c28 objc_exception_throw + 56 (objc-exception.mm:356)
2 Foundation 0x1b87bd944 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 168 (NSException.m:251)
3 UIKitCore 0x1c037a464 _UIApplicationDrainManagedAutoreleasePool + 260 (UIApplication+AutoreleasePool.m:171)
4 CoreFoundation 0x1be0598e8 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 32 (CFRunLoop.c:1789)
5 CoreFoundation 0x1bdfe951c __CFRunLoopDoObservers + 552 (CFRunLoop.c:1902)
6 CoreFoundation 0x1be049d7c CFRunLoopRunSpecific + 676 (CFRunLoop.c:3421)
7 UIFoundation 0x1c7b1da70 -[NSHTMLReader _loadUsingWebKit] + 1432 (NSHTMLReader.m:2633)
8 UIFoundation 0x1c7b1e594 -[NSHTMLReader attributedString] + 20 (NSHTMLReader.m:3222)
9 UIFoundation 0x1c7ade150 _NSReadAttributedStringFromURLOrData + 6252 (NSAttributedStringAdditions.m:2750)
10 UIFoundation 0x1c7adc86c -[NSAttributedString(NSAttributedStringUIFoundationAdditions) initWithData:options:documentAttributes:error:] + 144 (NSAttributedStringAdditions.m:1442)
11 MyApp 0x10ece0618 0x1040fc000 + 180241944
12 MyApp 0x105e07a10 0x1040fc000 + 30456336
13 MyApp 0x10e053f4c 0x1040fc000 + 167083852
14 MyApp 0x10976f350 0x1040fc000 + 90649424
15 MyApp 0x1098a8a18 0x1040fc000 + 91933208
16 MyApp 0x10976f350 0x1040fc000 + 90649424
17 MyApp 0x10974bb9c 0x1040fc000 + 90504092
18 MyApp 0x10ef5fa30 0x1040fc000 + 182860336
19 UIKitCore 0x1c00a4afc -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 1360 (UITableView.m:16573)
20 UIKitCore 0x1c007ac08 -[UITableView _updateVisibleCellsForRanges:createIfNecessary:] + 568 (UITableView.m:3144)
21 UIKitCore 0x1bffbdcb0 -[UITableView _updateVisibleCellsNow:] + 1132 (UITableView.m:3286)
22 UIKitCore 0x1bffbd788 -[UITableView layoutSubviews] + 144 (UITableView.m:10618)
23 UIKitCore 0x1bff6f2e8 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1932 (UIView.m:18682)
24 QuartzCore 0x1bf47560c CA::Layer::layout_if_needed(CA::Transaction*) + 496 (CALayer.mm:10311)
25 QuartzCore 0x1bf487f2c CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 144 (CALayer.mm:2519)
26 QuartzCore 0x1bf4989f0 CA::Context::commit_transaction(CA::Transaction*, double, double*) + 456 (CAContextInternal.mm:2714)
27 QuartzCore 0x1bf4c5dc0 CA::Transaction::commit() + 644 (CATransactionInternal.mm:432)
28 UIKitCore 0x1c03cc24c __83-[UIApplication _createSnapshotContextForScene:withName:performLayoutWithSettings:]_block_invoke_4 + 28 (UIApplication.m:8319)
29 UIKitCore 0x1c005527c -[UIApplication _performWithUICACommitStateSnapshotting:] + 80 (UIApplication.m:8164)
30 UIKitCore 0x1c0055014 __83-[UIApplication _createSnapshotContextForScene:withName:performLayoutWithSettings:]_block_invoke_2 + 428 (UIApplication.m:8318)
31 UIKitCore 0x1bff993e4 +[UIView(Animation) p e r f o r m W i t h o u t A n i m a t i o n : ] + 6 8 ( U I V i e w . m : 1 4 8 2 2 ) < b r / > 3 2 U I K i t C o r e 0 x 1 c 0 3 2 7 6 e c _ _ 8 3 - [ U I A p p l i c a t i o n _ c r e a t e S n a p s h o t C o n t e x t F o r S c e n e : w i t h N a m e : p e r f o r m L a y o u t W i t h S e t t i n g s : ] _ b l o c k _ i n v o k e + 1 8 0 ( U I A p p l i c a t i o n . m : 8 2 8 7 ) < b r / > 3 3 U I K i t C o r e 0 x 1 c 0 2 1 4 9 0 c - [ U I S c e n e _ a p p l y O v e r r i d e S e t t i n g s : f o r A c t i o n s : ] + 1 0 0 ( U I S c e n e . m : 1 8 3 3 ) < b r / > 3 4 U I K i t C o r e 0 x 1 c 0 2 1 4 8 9 0 - [ U I W i n d o w S c e n e _ a p p l y S n a p s h o t S e t t i n g s : f o r A c t i o n s : ] + 4 0 ( U I W i n d o w S c e n e . m : 2 4 2 8 ) < b r / > 3 5 U I K i t C o r e 0 x 1 c 0 2 1 4 8 2 4 - [ U I A p p l i c a t i o n _ c r e a t e S n a p s h o t C o n t e x t F o r S c e n e : w i t h N a m e : p e r f o r m L a y o u t W i t h S e t t i n g s : ] + 2 9 2 ( U I A p p l i c a t i o n . m : 8 2 8 4 ) < b r / > 3 6 U I K i t C o r e 0 x 1 c 0 2 1 4 6 b 0 _ _ 6 5 - [ U I A p p l i c a t i o n _ p e r f o r m S n a p s h o t s W i t h A c t i o n : f o r S c e n e : c o m p l e t i o n : ] _ b l o c k _ i n v o k e _ 3 + 9 2 ( U I A p p l i c a t i o n . m : 8 4 7 4 ) < b r / > 3 7 F r o n t B o a r d S e r v i c e s 0 x 1 d 2 a f a 3 a 4 - [ F B S S c e n e S n a p s h o t A c t i o n _ e x e c u t e N e x t R e q u e s t ] + 1 8 4 ( F B S S c e n e S n a p s h o t A c t i o n . m : 1 5 2 ) < b r / > 3 8 F r o n t B o a r d S e r v i c e s 0 x 1 d 2 a f a 3 c 0 - [ F B S S c e n e S n a p s h o t A c t i o n _ e x e c u t e N e x t R e q u e s t ] + 2 1 2 ( F B S S c e n e S n a p s h o t A c t i o n . m : 1 5 8 ) < b r / > 3 9 F r o n t B o a r d S e r v i c e s 0 x 1 d 2 b 0 2 0 a 0 - [ F B S S c e n e S n a p s h o t A c t i o n e x e c u t e R e q u e s t s W i t h H a n d l e r : c o m p l e t i o n H a n d l e r : e x p i r a t i o n H a n d l e r : ] + 2 2 8 ( F B S S c e n e S n a p s h o t A c t i o n . m : 9 1 ) < b r / > 4 0 U I K i t C o r e 0 x 1 c 0 2 1 4 b d 8 _ _ 6 5 - [ U I A p p l i c a t i o n _ p e r f o r m S n a p s h o t s W i t h A c t i o n : f o r S c e n e : c o m p l e t i o n : ] _ b l o c k _ i n v o k e _ 2 + 2 3 6 ( U I A p p l i c a t i o n . m : 8 4 7 2 ) < b r / > 4 1 U I K i t C o r e 0 x 1 c 0 2 1 4 f f 8 - [ U I A p p l i c a t i o n _ b e g i n S n a p s h o t S e s s i o n F o r S c e n e : w i t h S n a p s h o t B l o c k : ] + 8 0 4 ( U I A p p l i c a t i o n . m : 8 4 2 0 ) < b r / > 4 2 UIKitCore 0x1c0214cac __65-[UIApplication _performSnapshotsWithAction:forScene:completion:]_block_invoke + 128 (UIApplication.m:8470)
43 UIKitCore 0x1c02189f8 -[UIScene _enableOverrideSettingsForActions:] + 56 (UIScene.m:1816)
44 UIKitCore 0x1c0218990 -[UIScene _performSystemSnapshotWithActions:] + 84 (UIScene.m:1841)
45 UIKitCore 0x1c0217698 -[UIApplication _performSnapshotsWithAction:forScene:completion:] + 224 (UIApplication.m:8469)
46 UIKitCore 0x1c0217578 __98-[_UISceneSnapshotBSActionsHandler _respondToActions:forFBSScene:inUIScene:fromTransitionContext:]_block_invoke_3 + 156 (_UISceneSnapshotBSActionsHandler.m:54)
47 UIKitCore 0x1c034a000 __98-[_UISceneSnapshotBSActionsHandler _respondToActions:forFBSScene:inUIScene:fromTransitionContext:]_block_invoke_2 + 408 (_UISceneSnapshotBSActionsHandler.m:70)
48 UIKitCore 0x1c015c8a4 -[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] + 568 (UIScene.m:1704)
49 UIKitCore 0x1c015c5d0 -[UIScene scene:didUpdateWithDiff:transitionContext:completion:] + 220 (UIScene.m:1969)
50 UIKitCore 0x1c015c42c -[UIApplicationSceneClientAgent scene:handleEvent:withCompletion:] + 308 (UIApplicationSceneClientAgent.m:86)
51 FrontBoardServices 0x1d2afbc40 -[FBSScene updater:didUpdateSettings:withDiff:transitionContext:completion:] + 392 (FBSScene.m:549)
52 FrontBoardServices 0x1d2afba98 __94-[FBSWorkspaceScenesClient _queue_updateScene:withSettings:diff:transitionContext:completion:]_block_invoke_2 + 124 (FBSWorkspaceScenesClient.m:606)
53 FrontBoardServices 0x1d2afeefc -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 160 (FBSWorkspace.m:359)
54 FrontBoardServices 0x1d2afee24 __94-[FBSWorkspaceScenesClient _queue_updateScene:withSettings:diff:transitionContext:completion:]_block_invoke + 312 (FBSWorkspaceScenesClient.m:605)
55 libdispatch.dylib 0x1c4d80780 _dispatch_client_callout + 16 (object.m:560)
56 libdispatch.dylib 0x1c4d582d0 _dispatch_block_invoke_direct$VARIANT$armv81 + 212 (queue.c:496)
57 FrontBoardServices 0x1d2b08410 __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 44 (FBSSerialQueue.m:157)
58 FrontBoardServices 0x1d2b0804c -[FBSSerialQueue _targetQueue_performNextIfPossible] + 176 (FBSSerialQueue.m:181)
59 FrontBoardServices 0x1d2b0a600 -[FBSSerialQueue _performNextFromRunLoopSource] + 24 (FBSSerialQueue.m:194)
60 CoreFoundation 0x1be0990e8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24 (CFRunLoop.c:1957)
61 CoreFoundation 0x1be0a4d5c __CFRunLoopDoSource0 + 172 (CFRunLoop.c:2001)
62 CoreFoundation 0x1be02ffc4 __CFRunLoopDoSources0 + 232 (CFRunLoop.c:2038)
63 CoreFoundation 0x1be045138 __CFRunLoopRun + 784 (CFRunLoop.c:2953)
64 CoreFoundation 0x1be049d20 CFRunLoopRunSpecific + 584 (CFRunLoop.c:3418)
65 GraphicsServices 0x1f6119998 GSEventRunModal + 160 (GSEvent.c:2196)
66 UIKitCore 0x1c02dc34c -[UIApplication _run] + 868 (UIApplication.m:3782)
67 UIKitCore 0x1c02dbfc4 UIApplicationMain + 312 (UIApplication.m:5372)
68 MyApp 0x10ecd12d0 0x1040fc000 + 180179664
69 MyApp 0x105d24970 0x1040fc000 + 29526384
70 MyApp 0x10d8ed1f4 0x1040fc000 + 159322612
71 MyApp 0x1089f9748 0x1040fc000 + 76535624
72 MyApp 0x10ee5f934 0x1040fc000 + 181811508
73 MyApp 0x10ee0af40 0x1040fc000 + 181464896
74 MyApp 0x10ee10c74 0x1040fc000 + 181488756
75 MyApp 0x10ee660d0 0x1040fc000 + 181838032
76 MyApp 0x10ecdfb8c 0x1040fc000 + 180239244
77 MyApp 0x10ef3af5c 0x1040fc000 + 182710108
78 dyld 0x1db808344 start + 1860 (dyldMain.cpp:1165)
Thread 0 name:
Thread 0 name:
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x00000001f97fb198 __pthread_kill + 8 (:-1)
1 libsystem_pthread.dylib 0x0000000208d8a5f8 pthread_kill + 208 (pthread.c:1670)
2 libsystem_c.dylib 0x00000001c4e444b8 abort + 124 (abort.c:118)
3 MyApp 0x000000010ecd7298 0x1040fc000 + 180204184
4 CoreFoundation 0x00000001be0d4664 __handleUncaughtException + 632 (NSException.m:273)
5 libobjc.A.dylib 0x00000001b72baaf0 _objc_terminate() + 112 (objc-exception.mm:497)
6 MyApp 0x000000010ef1df58 0x1040fc000 + 182591320
7 libc++abi.dylib 0x0000000208cc2424 std::__terminate(void (*)()) + 12 (:-1)
8 libc++abi.dylib 0x0000000208cc4da0 __cxxabiv1::failed_throw(__cxxabiv1::__cxa_exception*) + 32 (:-1)
9 libc++abi.dylib 0x0000000208cc4d60 __cxa_throw + 132 (:-1)
10 libobjc.A.dylib 0x00000001b72b5d58 objc_exception_throw + 360 (objc-exception.mm:385)
11 MyApp 0x000000010ecd6d20 0x1040fc000 + 180202784
12 MyApp 0x000000010ee78b20 0x1040fc000 + 181914400
13 MyApp 0x000000010ee77f34 0x1040fc000 + 181911348
14 MyApp 0x000000010ee8cf4c 0x1040fc000 + 181997388
15 MyApp 0x0000000105ac6e6c 0x1040fc000 + 27045484
16 MyApp 0x000000010e52da54 0x1040fc000 + 172169812
17 MyApp 0x000000010ecd7270 0x1040fc000 + 180204144
18 CoreFoundation 0x00000001be0d4664 __handleUncaughtException + 632 (NSException.m:273)
19 libobjc.A.dylib 0x00000001b72baaf0 _objc_terminate() + 112 (objc-exception.mm:497)
20 MyApp 0x000000010ef1df58 0x1040fc000 + 182591320
21 libc++abi.dylib 0x0000000208cc2424 std::__terminate(void (*)()) + 12 (:-1)
22 libc++abi.dylib 0x0000000208cc23d4 std::terminate() + 52 (:-1)
23 libdispatch.dylib 0x00000001c4d80794 _dispatch_client_callout + 36 (object.m:563)
24 libdispatch.dylib 0x00000001c4d582d0 _dispatch_block_invoke_direct$VARIANT$armv81 + 212 (queue.c:496)
25 FrontBoardServices 0x00000001d2b08410 __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 44 (FBSSerialQueue.m:157)
26 FrontBoardServices 0x00000001d2b0804c -[FBSSerialQueue _targetQueue_performNextIfPossible] + 176 (FBSSerialQueue.m:181)
27 FrontBoardServices 0x00000001d2b0a600 -[FBSSerialQueue _performNextFromRunLoopSource] + 24 (FBSSerialQueue.m:194)
28 CoreFoundation 0x00000001be0990e8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24 (CFRunLoop.c:1957)
29 CoreFoundation 0x00000001be0a4d5c __CFRunLoopDoSource0 + 172 (CFRunLoop.c:2001)
30 CoreFoundation 0x00000001be02ffc4 __CFRunLoopDoSources0 + 232 (CFRunLoop.c:2038)
31 CoreFoundation 0x00000001be045138 __CFRunLoopRun + 784 (CFRunLoop.c:2953)
32 CoreFoundation 0x00000001be049d20 CFRunLoopRunSpecific + 584 (CFRunLoop.c:3418)
33 GraphicsServices 0x00000001f6119998 GSEventRunModal + 160 (GSEvent.c:2196)
34 UIKitCore 0x00000001c02dc34c -[UIApplication _run] + 868 (UIApplication.m:3782)
35 UIKitCore 0x00000001c02dbfc4 UIApplicationMain + 312 (UIApplication.m:5372)
36 MyApp 0x000000010ecd12d0 0x1040fc000 + 180179664
37 MyApp 0x0000000105d24970 0x1040fc000 + 29526384
38 MyApp 0x000000010d8ed1f4 0x1040fc000 + 159322612
39 MyApp 0x00000001089f9748 0x1040fc000 + 76535624
40 MyApp 0x000000010ee5f934 0x1040fc000 + 181811508
41 MyApp 0x000000010ee0af40 0x1040fc000 + 181464896
42 MyApp 0x000000010ee10c74 0x1040fc000 + 181488756
43 MyApp 0x000000010ee660d0 0x1040fc000 + 181838032
44 MyApp 0x000000010ecdfb8c 0x1040fc000 + 180239244
45 MyApp 0x000000010ef3af5c 0x1040fc000 + 182710108
46 dyld 0x00000001db808344 start + 1860 (dyldMain.cpp:1165)
Thread 1 name:
Thread 1:
0 libsystem_kernel.dylib 0x00000001f97f587c __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x0000000208d7f60c _pthread_cond_wait$VARIANT$armv81 + 1220 (pthread_cond.c:862)
2 MyApp 0x000000010eda2c68 0x1040fc000 + 181038184
3 libsystem_pthread.dylib 0x0000000208d800ec _pthread_start + 116 (pthread.c:893)
4 libsystem_pthread.dylib 0x0000000208d7e72c thread_start + 8 (:-1)
.
.
.
.