Как получить продление акций, работая на мауи iOSIOS

Программируем под IOS
Ответить
Anonymous
 Как получить продление акций, работая на мауи iOS

Сообщение Anonymous »

В течение последних нескольких месяцев я переносил свое приложение из Xamarin в Мауи для iOS на Mac. Это было невероятно сложно, в основном из -за того, что инструменты проваливаются или не работали в качестве рекламы. режим выпуска . При запуске режима выпуска < /strong> (который занимает около 20-30 минут для компиляции), когда я нажимаю на значок приложения на панели общих приложений, на мгновение панель становится серым, прежде чем вернуться к его нормальному цвету, но представление, которое я создал, не появляется. Даже в режиме отладки они не работают в расширениях < /li>
Я дважды проверял подготовку, и все это правильно (точно так же, как и то, что я использовал для Xamarin) < /li>
Я проверил свои права, обмениваемые группами и именами пакетов, все это правильно < /li>
Я пробовал Debug letmends, но не соответствует клипсу, но не стоит. Access < /li>
< /ul>
Учитывая, что он работает в отладке и работает в производстве в Xamarin, я предполагаю, что это проблема конфигурации, а не проблема с кодом. Таким образом, следующие файлы могут быть виноваты (?):
Вот основное приложение csproj:





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


...
...
...
...
...



Вот shareextension csproj :


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




Вот info.plist :




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




вот info info.plist :




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>
Что я могу сделать, чтобы отладить это? Это невероятно сложная проблема для решения, особенно с учетом времени компиляции в 20-30 мин, что означает, что я могу попробовать только 2 или 3 различных попытках сбои сбоя в час, что затрудняет достижение значимого прогресса.
Любые идеи были бы очень оценены. Код.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);
}

}
}

Обновление 2
Вот журналы устройств: первое для ShareExtension, которая не работает при открытии, а вторая для другой проблемы, когда приложение сбоя при переходе на фон:
subsection of ShareExtension Vog: p>
soopection of areextension vog:
.{"app_name":"ShareExtension.iOS","timestamp":"2025-08-16 20:47:47.00 +0800","app_version":"2.0.468","slice_uuid":"763a3c23-6a50-38ec-bb3a-7b95481314d2","build_version":"468","platform":2,"bundleID":"com.MyCompany.MyApp.ShareExtension","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"iPhone OS 16.7.11 (20H360)","roots_installed":0,"name":"ShareExtension.iOS","incident_id":"0F01C05A-75A1-42EE-9A90-423A598406C7"}
{
"uptime" : 3700,
"procRole" : "Background",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "iPhone10,6",
"coalitionID" : 714,
"osVersion" : {
"isEmbedded" : true,
"train" : "iPhone OS 16.7.11",
"releaseType" : "User",
"build" : "20H360"
},
"captureTime" : "2025-08-16 20:47:46.7851 +0800",
"incident" : "0F01C05A-75A1-42EE-9A90-423A598406C7",
"pid" : 893,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2025-08-16 20:47:46.6869 +0800",
"procStartAbsTime" : 89455051550,
"procExitAbsTime" : 89457387379,
"procName" : "ShareExtension.iOS",
"procPath" : "\/private\/var\/containers\/Bundle\/Application\/22D1ACF9-7786-4BDD-B358-5AD970A7402E\/MyApp.app\/PlugIns\/ShareExtension.iOS.appex\/ShareExtension.iOS",
"bundleInfo" : {"CFBundleShortVersionString":"2.0.468","CFBundleVersion":"468","CFBundleIdentifier":"com.MyCompany.MyApp.ShareExtension"},
"storeInfo" : {"deviceIdentifierForVendor":"6508F78F-994C-43A8-91AC-EA76877032CE","thirdParty":true},
"parentProc" : "launchd",
"parentPid" : 1,
"coalitionName" : "com.MyCompany.MyApp.ShareExtension",
"crashReporterKey" : "6e44feff38951cf9f69bee6317eafbb29e871dd9",
"consecutiveCrashCount" : 1,
"throttleTimeout" : 10,
"codeSigningID" : "com.MyCompany.MyApp.ShareExtension",
"codeSigningTeamID" : "HLR7Z6C3G2",
"codeSigningFlags" : 570434309,
"codeSigningValidationCategory" : 3,
"codeSigningTrustLevel" : 0,
"basebandVersion" : "6.01.01",
"vmRegionInfo" : "0 is not in any region. Bytes before following region: 4375248896\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 104c90000-1059b0000 [ 13.1M] r-x\/r-x SM=COW ...Extension.iOS",
"exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000000"},
"vmregioninfo" : "0 is not in any region. Bytes before following region: 4375248896\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 104c90000-1059b0000 [ 13.1M] r-x\/r-x SM=COW ...Extension.iOS",
"faultingThread" : 0,
"threads" : [{"triggered":true,"id":24267,"threadState":{"x":[{"value":0},{"value":6091625552},{"value":0},{"value":6091625624},{"value":0},{"value":0},{"value":114},{"value":1776},{"value":36975468047149},{"value":0},{"value":1},{"value":10742409432},{"value":1},{"value":0},{"value":2043},{"value":3890602311},{"value":4389632712},{"value":4388284692},{"value":0},{"value":10742403552},{"value":4389563176},{"value":9172365632,"symbolLocation":0,"symbol":"UIApp"},{"value":9127133024,"symbolLocation":0,"symbol":"__NSArray0__struct"},{"value":10748824960},{"value":10742401024},{"value":10771895648},{"value":4396096512},{"value":10742408928},{"value":10756234048}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4375436152},"cpsr":{"value":1073741824},"fp":{"value":6091625472},"sp":{"value":6091625472},"esr":{"value":1442840704,"description":" A d d r e s s s i z e f a u l t & q u o t ; } , & q u o t ; p c & q u o t ; : { & q u o t ; v a l u e & q u o t ; : 0 } , & q u o t ; f a r & q u o t ; : { & q u o t ; v a l u e & q u o t ; : 0 } } , & q u o t ; n a m e & q u o t ; : & q u o t ; t i d _ 1 0 3 & q u o t ; , & q u o t ; q u e u e & q u o t ; : & q u o t ; c o m . a p p l e . m a i n - t h r e a d & q u o t ; , & q u o t ; f r a m e s & q u o t ; : [ { & q u o t ; i m a g e O f f s e t & q u o t ; : 0 , & q u o t ; i m a g e I n d e x & q u o t ; : 2 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 3 0 3 5 8 4 8 , & q u o t ; i m a g e I n d e x & q u o t ; : 0 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 6 2 3 5 9 6 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ _ U I V i e w S e r v i c e V i e w C o n t r o l l e r O p e r a t o r _ _ c r e a t e V i e w C o n t r o l l e r W i t h O p t i o n s : c o m p l e t i o n B l o c k : ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 6 3 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 3 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 5 0 3 6 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ i n v o k i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 4 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 7 4 3 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 7 6 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 6 3 1 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e W i t h T a r g e t : ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 6 0 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 5 2 0 1 4 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ _ U I V i e w S e r v i c e I m p l i c i t A n i m a t i o n D e c o d i n g P r o x y f o r w a r d I n v o c a t i o n : ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 9 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 3 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 4 5 4 4 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ _ f o r w a r d i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 7 7 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 5 2 6 5 8 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ C F _ f o r w a r d i n g _ p r e p _ 0 & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 9 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 5 0 3 6 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ i n v o k i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 4 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 7 4 3 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 7 6 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 6 3 1 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e W i t h T a r g e t : ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 6 0 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 5 5 1 2 5 6 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ _ U I Q u e u e i n g P r o x y f o r w a r d I n v o c a t i o n : ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 3 0 0 , & q u o t ; i m a g e I n d e x & q u o t ; : 3 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 4 5 4 4 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ _ f o r w a r d i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 7 7 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 5 2 6 5 8 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ C F _ f o r w a r d i n g _ p r e p _ 0 & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 9 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 5 0 3 6 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ i n v o k i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 4 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 7 4 3 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 7 6 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 6 3 1 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e W i t h T a r g e t : ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 6 0 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 4 5 4 4 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ _ f o r w a r d i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 7 7 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 5 2 6 5 8 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ C F _ f o r w a r d i n g _ p r e p _ 0 & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 9 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 5 0 3 6 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ i n v o k i n g _ _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 4 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 1 2 7 4 3 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ N S I n v o c a t i o n i n v o k e ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 7 6 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 4 1 1 5 2 0 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ d i s p a t c h _ c l i e n t _ c a l l o u t & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 6 , & q u o t ; i m a g e I n d e x & q u o t ; : 5 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 2 4 6 4 8 0 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ d i s p a t c h _ b l o c k _ i n v o k e _ d i r e c t $ V A R I A N T $ a r m v 8 1 & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 1 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 5 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 6 6 5 7 6 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ F B S S E R I A L Q U E U E _ I S _ C A L L I N G _ O U T _ T O _ A _ B L O C K _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 4 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 6 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 6 5 6 1 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ F B S S e r i a l Q u e u e _ t a r g e t Q u e u e _ p e r f o r m N e x t I f P o s s i b l e ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 7 6 , & q u o t ; i m a g e I n d e x & q u o t ; : 6 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 7 5 2 6 4 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; - [ F B S S e r i a l Q u e u e _ p e r f o r m N e x t F r o m R u n L o o p S o u r c e ] & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 6 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 8 2 3 5 2 8 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ C F R U N L O O P _ I S _ C A L L I N G _ O U T _ T O _ A _ S O U R C E 0 _ P E R F O R M _ F U N C T I O N _ _ & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 2 4 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 8 7 1 7 7 2 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ C F R u n L o o p D o S o u r c e 0 & q u o t ; , & q u o t ; s y m b o l L o c a t i o n & q u o t ; : 1 7 2 , & q u o t ; i m a g e I n d e x & q u o t ; : 4 } , { & q u o t ; i m a g e O f f s e t & q u o t ; : 3 9 3 1 5 6 , & q u o t ; s y m b o l & q u o t ; : & q u o t ; _ _ C F R u n L o o p D o S o u r c e s 0 & q u o t ; , & q u ot;symbolLocation":232,"imageIndex":4},{"imageOffset":479544,"symbol":"__CFRunLoopRun","symbolLocation":784,"imageIndex":4},{"imageOffset":498976,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":4},{"imageOffset":6552,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":7},{"imageOffset":3609420,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":3},{"imageOffset":3608516,"symbol":"UIApplicationMain","symbolLocation":312,"imageIndex":3},{"imageOffset":96264,"symbol":"_xpc_objc_main","symbolLocation":436,"imageIndex":8},{"imageOffset":104808,"symbol":"xpc_main","symbolLocation":152,"imageIndex":8},{"imageOffset":533780,"symbol":"-[NSXPCListener resume]","symbolLocation":260,"imageIndex":9},{"imageOffset":98392,"imageIndex":10},{"imageOffset":22936,"imageIndex":10},{"imageOffset":19780,"imageIndex":10},{"imageOffset":134304,"symbol":"EXExtensionMain","symbolLocation":248,"imageIndex":11},{"imageOffset":796184,"symbol":"NSExtensionMain","symbolLocation":176,"imageIndex":9},{"imageOffset":11165072,"imageIndex":0},{"imageOffset":13031620,"imageIndex":0},{"imageOffset":82756,"symbol":"start","symbolLocation":1860,"imageIndex":12}]},{"id":24269,"frames":[{"imageOffset":5912,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}]},{"id":24270,"name":"SGen worker","frames":[{"imageOffset":6268,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":14},{"imageOffset":9740,"symbol":"_pthread_cond_wait$VARIANT$armv81","symbolLocation":1220,"imageIndex":13},{"imageOffset":11631480,"imageIndex":0},{"imageOffset":12524,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":13},{"imageOffset":5932,"symbol":"thread_start","symbolLocation":8,"imageIndex":13}]},{"id":24271,"name":"Finalizer","frames":[{"imageOffset":4012,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":14},{"imageOffset":12376372,"imageIndex":0},{"imageOffset":12216396,"imageIndex":0},{"imageOffset":12524,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":13},{"imageOffset":5932,"symbol":"thread_start","symbolLocation":8,"imageIndex":13}]},{"id":24272,"frames":[{"imageOffset":5912,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}]},{"id":24273,"frames":[{"imageOffset":5912,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}]},{"id":24274,"frames":[{"imageOffset":5912,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}]},{"id":24275,"name":"com.apple.uikit.eventfetch-thread","frames":[{"imageOffset":4144,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":14},{"imageOffset":76568,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":14},{"imageOffset":77240,"symbol":"mach_msg_overwrite","symbolLocation":484,"imageIndex":14},{"imageOffset":5412,"symbol":"mach_msg","symbolLocation":20,"imageIndex":14},{"imageOffset":475464,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":4},{"imageOffset":479968,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":4},{"imageOffset":498976,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":4},{"imageOffset":257784,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":9},{"imageOffset":257524,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":9},{"imageOffset":4798488,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":404,"imageIndex":3},{"imageOffset":354908,"symbol":"__NSThread__start__","symbolLocation":704,"imageIndex":9},{"imageOffset":12524,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":13},{"imageOffset":5932,"symbol":"thread_start","symbolLocation":8,"imageIndex":13}]}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64",
"base" : 4375248896,
"size" : 13762560,
"uuid" : "763a3c23-6a50-38ec-bb3a-7b95481314d2",
"path" : "\/private\/var\/containers\/Bundle\/Application\/22D1ACF9-7786-4BDD-B358-5AD970A7402E\/MyApp.app\/PlugIns\/ShareExtension.iOS.appex\/ShareExtension.iOS",
"name" : "ShareExtension.iOS"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4471177216,
"size" : 49152,
"uuid" : "1ab75847-bb2d-36f9-999a-72dd61f86b85",
"path" : "\/private\/preboot\/Cryptexes\/OS\/usr\/lib\/libobjc-trampolines.dylib",
"name" : "libobjc-trampolines.dylib"
},
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7679012864,
"size" : 24203264,
"uuid" : "1242978a-2c2c-3781-8d6c-9777edce2804",
"path" : "\/System\/Library\/PrivateFrameworks\/UIKitCore.framework\/UIKitCore",
"name" : "UIKitCore"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7645872128,
"size" : 3993600,
"uuid" : "55b9ba28-4c5c-3fe7-9c47-4983337d6e83",
"path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/CoreFoundation",
"name" : "CoreFoundation"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7760478208,
"size" : 540672,
"uuid" : "b51e7cdb-abc9-35af-b8bb-2dce23bc4d6e",
"path" : "\/usr\/lib\/system\/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7993114624,
"size" : 638976,
"uuid" : "9df90f7d-2d79-316c-92e4-13ead6cf214d",
"path" : "\/System\/Library\/PrivateFrameworks\/FrontBoardServices.framework\/FrontBoardServices",
"name" : "FrontBoardServices"
},
< /code>
.
.
.
.
.
образное{"app_name":"MyApp","timestamp":"2025-08-16 20:48:14.00 +0800","app_version":"2.0.468","slice_uuid":"61c18ef3-ad51-3f4e-80a3-f3daba5a713f","build_version":"468","platform":2,"bundleID":"com.MyCompany.MyApp","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"iPhone OS 16.7.11 (20H360)","roots_installed":0,"name":"MyApp","incident_id":"E8340AA5-7A92-4E7E-8AC7-B8486A7B78F7"}
{
"uptime" : 3700,
"procRole" : "Background",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "iPhone10,6",
"coalitionID" : 573,
"osVersion" : {
"isEmbedded" : true,
"train" : "iPhone OS 16.7.11",
"releaseType" : "User",
"build" : "20H360"
},
"captureTime" : "2025-08-16 20:48:13.2104 +0800",
"incident" : "E8340AA5-7A92-4E7E-8AC7-B8486A7B78F7",
"pid" : 903,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2025-08-16 20:48:07.5121 +0800",
"procStartAbsTime" : 89954856198,
"procExitAbsTime" : 90091486613,
"procName" : "MyApp",
"procPath" : "\/private\/var\/containers\/Bundle\/Application\/22D1ACF9-7786-4BDD-B358-5AD970A7402E\/MyApp.app\/MyApp",
"bundleInfo" : {"CFBundleShortVersionString":"2.0.468","CFBundleVersion":"468","CFBundleIdentifier":"com.MyCompany.MyApp"},
"storeInfo" : {"deviceIdentifierForVendor":"6508F78F-994C-43A8-91AC-EA76877032CE","thirdParty":true},
"parentProc" : "launchd",
"parentPid" : 1,
"coalitionName" : "com.MyCompany.MyApp",
"crashReporterKey" : "6e44feff38951cf9f69bee6317eafbb29e871dd9",
"codeSigningID" : "com.MyCompany.MyApp",
"codeSigningTeamID" : "HLR7Z6C3G2",
"codeSigningFlags" : 570434309,
"codeSigningValidationCategory" : 3,
"codeSigningTrustLevel" : 0,
"basebandVersion" : "6.01.01",
"exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
"asi" : {"libsystem_c.dylib":["abort() called"]},
"lastExceptionBacktrace" : [{"imageOffset":37900,"symbol":"__exceptionPreprocess","symbolLocation":160,"imageIndex":6},{"imageOffset":89128,"symbol":"objc_exception_throw","symbolLocation":56,"imageIndex":7},{"imageOffset":4602180,"symbol":"-[NSMutableDictionary(NSMutableDictionary) initWithContentsOfFile:]","symbolLocation":0,"imageIndex":14},{"imageOffset":4256868,"symbol":"_UIApplicationDrainManagedAutoreleasePool","symbolLocation":260,"imageIndex":12},{"imageOffset":563432,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__","symbolLocation":32,"imageIndex":6},{"imageOffset":103708,"symbol":"__CFRunLoopDoObservers","symbolLocation":552,"imageIndex":6},{"imageOffset":499068,"symbol":"CFRunLoopRunSpecific","symbolLocation":676,"imageIndex":6},{"imageOffset":817776,"symbol":"-[NSHTMLReader _loadUsingWebKit]","symbolLocation":1432,"imageIndex":18},{"imageOffset":820628,"symbol":"-[NSHTMLReader attributedString]","symbolLocation":20,"imageIndex":18},{"imageOffset":557392,"symbol":"_NSReadAttributedStringFromURLOrData","symbolLocation":6252,"imageIndex":18},{"imageOffset":551020,"symbol":"-[NSAttributedString(NSAttributedStringUIFoundationAdditions) initWithData:options:documentAttributes:error:]","symbolLocation":144,"imageIndex":18},{"imageOffset":88231956,"imageIndex":0},{"imageOffset":18877152,"imageIndex":0},{"imageOffset":87302096,"imageIndex":0},{"imageOffset":54601320,"imageIndex":0},{"imageOffset":55884416,"imageIndex":0},{"imageOffset":54601320,"imageIndex":0},{"imageOffset":54456020,"imageIndex":0},{"imageOffset":90821304,"imageIndex":0},{"imageOffset":1284860,"symbol":"-[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:]","symbolLocation":1360,"imageIndex":12},{"imageOffset":1113096,"symbol":"-[UITableView _updateVisibleCellsForRanges:createIfNecessary:]","symbolLocation":568,"imageIndex":12},{"imageOffset":339120,"symbol":"-[UITableView _updateVisibleCellsNow:]","symbolLocation":1132,"imageIndex":12},{"imageOffset":337800,"symbol":"-[UITableView layoutSubviews]","symbolLocation":144,"imageIndex":12},{"imageOffset":17128,"symbol":"-[UIView(CALayerDelegate) layoutSublayersOfLayer:]","symbolLocation":1932,"imageIndex":12},{"imageOffset":38412,"symbol":"CA::Layer::layout_if_needed(CA::Transaction*)","symbolLocation":496,"imageIndex":19},{"imageOffset":114476,"symbol":"CA::Layer::layout_and_display_if_needed(CA::Transaction*)","symbolLocation":144,"imageIndex":19},{"imageOffset":182768,"symbol":"CA::Context::commit_transaction(CA::Transaction*, double, double*)","symbolLocation":456,"imageIndex":19},
.
.
.
.
.
.


Подробнее здесь: https://stackoverflow.com/questions/797 ... n-maui-ios
Ответить

Быстрый ответ

Изменение регистра текста: 
Смайлики
:) :( :oops: :roll: :wink: :muza: :clever: :sorry: :angel: :read: *x)
Ещё смайлики…
   
К этому ответу прикреплено по крайней мере одно вложение.

Если вы не хотите добавлять вложения, оставьте поля пустыми.

Максимально разрешённый размер вложения: 15 МБ.

Вернуться в «IOS»