Post not yet marked as solved
I have a problem with grayscale PNG Images which are loaded as completey black Images only on iPad 4 with iOS 10. On newer iPads this problem doesn't appear.The Images are loaded normally from the Filesystem. I also created a Bug Report but i dont get any answer. This Bug doesn' appear when i create a new Image from this grayscale Image with RGBA ColorSpace.
Post not yet marked as solved
Hey guys,I am trying to transfer an app of mine into my company iTunesConnect account but are getting the error:You can't transfer this app because of the following reasons:
Sandboxed Group Container
You can only transfer sandboxed apps that are not sharing a group container.the thing is, my app isn't using the group container any more, it was in an older version but not the currently shipping version in the Mac App Store.does anyone have any experience with how to go about transferring the app?
Post not yet marked as solved
Hi, I'm just starting a course on coding and first lesson I can't get xcode to work. I'm getting an error right away? I've looked all over the internet but can't seem to find a solution and I'm quite a beginner. Can anyone help me get xcode running right? Thanks for your help...This is my error... “An internal error occured. Editing functionality may be limited”
Post not yet marked as solved
I have a developer account. I have received by email an invoice receipt and I would like to download it as pdf file but I can't find where exactly in my account there are all the invoices. Can somebody tell me where can I find the invoices and download them?
Post not yet marked as solved
When executing the test suites I have, I see many times where the “wait for app to idle” stalls and will time out with the message “App animations complete notification not received, will attempt to continue.”The code I used to make the test suites have zero customized code and most of it was generated via the recorder. Example below: t = 23.41s Find the "btn login" Button t = 23.41s Snapshot accessibility hierarchy for com.testapp.mobilecordova t = 24.44s Find: Descendants matching type NavigationBar t = 24.44s Find: Elements matching predicate '"LOG IN" IN identifiers' t = 24.44s Find: Descendants matching type Button t = 24.44s Find: Elements matching predicate '"btn login" IN identifiers' t = 24.45s Wait for app to idle t = 24.95s Synthesize event t = 25.22s Wait for app to idle t = 147.39s App animations complete notification not received, will attempt to continue. t = 147.39s Snapshot accessibility hierarchy for com.testapp.mobilecordova t = 148.10s Find: Descendants matching type StaticText t = 148.10s Find: Elements matching predicate '"PLEASE TURN ON NOTIFICATIONS" IN identifiers' t = 148.10s Use cached accessibility hierarchy for com.testapp.mobilecordova t = 148.10s Find: Descendants matching type CollectionView t = 148.11s Find: Descendants matching type StaticText t = 148.11s Find: Elements matching predicate '"3D Rooms Now Available!" IN identifiers' t = 148.11s Use cached accessibility hierarchy for com.testapp.mobilecordova t = 148.11s Find: Descendants matching type StaticText t = 148.12s Find: Elements matching predicate '"DAILY" IN identifiers' t = 148.17s Check predicate `exists == 1` against object `"HOME" StaticText` t = 148.17s Snapshot accessibility hierarchy for com.testapp.mobilecordova t = 148.62s Find: Descendants matching type NavigationBar t = 148.62s Find: Elements matching predicate '"HOME" IN identifiers' t = 148.62s Find: Descendants matching type StaticText t = 148.62s Find: Elements matching predicate '"HOME" IN identifiers' t = 148.62s Use cached accessibility hierarchy for com.testapp.mobilecordova t = 148.63s Find: Descendants matching type NavigationBar t = 148.63s Find: Elements matching predicate '"HOME" IN identifiers' t = 148.63s Find: Descendants matching type StaticText t = 148.63s Find: Elements matching predicate '"HOME" IN identifiers' t = 148.63s Use cached accessibility hierarchy for com.testapp.mobilecordova t = 148.64s Find: Descendants matching type Button t = 148.64s Find: Elements matching predicate '"My Friends" IN identifiers' t = 148.64s Tap "compose" Button t = 148.64s Wait for app to idle t = 269.48s App animations complete notification not received, will attempt to continue. t = 269.48s Find the "compose" Button t = 269.48s Snapshot accessibility hierarchy for com.testapp.mobilecordova t = 269.96s Find: Descendants matching type CollectionView t = 269.96s Find: Descendants matching type Button t = 269.97s Find: Elements matching predicate '"compose" IN identifiers' t = 269.97s Wait for app to idle t = 391.80s App animations complete notification not received, will attempt to continue. t = 391.80s Synthesize event t = 392.12s Wait for app to idleI have been searching for a way to modify this or add code to make it pass but have not been successful. I tried disabling the animations and found that the tests no longer wait and tests fail 100% of the time.
Post not yet marked as solved
Hello,This is crazy. I just wanted to update my app, but I need to accept the apple developer program licence agreement:The updated Apple Developer Program License Agreement needs to be reviewed.In order to update your existing apps and submit new apps to the App Store, the user with the Legal role (Team Agent) must review and accept the updated agreement in their account on the developer website.Yes, I searched the forum. No, I do not have to accept anything in itunes connect (banking, contratcs..) - there is a master agreement still active. Nothing to add there. I have a red banner in my account and I can review the agreement. But there is nothing in the agreement or below to say: "Yes, I accept it"What is the problem?Many thanks to the community.
Post not yet marked as solved
Hi guys!I have some lottery in my app.And I want that participation in the competition will be paid. Can I do this with in app?
Post not yet marked as solved
Hello everyone, Is there a way to make an application widget like button appears all the time, even on the home screen. I want to make a floating button which will appear on top of all the apps. I want to build an application similar to assistive which will appear on home screen and on top of other apps.
Post not yet marked as solved
I am learning Core Bluetooth to improve my general skills and marketability for new jobs. I have written a MacOS app that acts as a CBPeripheralManager and an iOS app that acts as a CBCentralManager. I have gotten the Peripheral to stream small data chunks to the Central just fine.Now I am looking to learn how to send larger data amounts. I have seen the sample code for sending data to subscribers in chunks and am in the process of porting that to Swift. But the CoreBluetooth docs also say: "Note: Use notifications to send a single packet of data to subscribed centrals. That is, when you update a subscribed central, you should send the entire updated value in a single notification, by calling the updateValue:forCharacteristic:onSubscribedCentrals: method only once. Depending on the size of your characteristic’s value, not all of the data may be transmitted by the notification. If this happens, the situation should be handled on the central side through a call to the readValueForCharacteristic: method of the CBPeripheral class, which can retrieve the entire value." https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/PerformingCommonPeripheralRoleTasks/PerformingCommonPeripheralRoleTasks.html#//apple_ref/doc/uid/TP40013257-CH4-SW1What I can't figure out is how to use `readValueForCharacteristic:` properly for a peridoically-updating characteristic. Is that possible, actually? I can't seem to subscribe to it to know when ot updates and then call `readValueForCharacteristic` as that endlessly tries to read the data but only gets the partial data. I tried sending an update notification from the Peripheral on one characteristic at the same time as I updated the data on a second characteristic. Then when the central gets the first characteristic update, it tries reading the second charcteristic but it gets `nil` for the value. But if I implement peripheralManager:didReceive readRequest:, and print the value of the characteristic, the Peripheral thinks it has data.I have also noticed that `readValueForCharacteristic:` also causes subscritptions to time out after 30 seconds or so, if I get this working do I need to resubscribe to services after doing it?Peripheral code is at https://github.com/natebirkholz/BluetoothTransmitter/tree/MultipleCharacteristicsCentral code is at https://github.com/natebirkholz/BluetoothTest/tree/MultipleCharacteristics
Post not yet marked as solved
After upgrading to 10.13, my 500GB SSD is nearly full. With 10.12 i always had ~200GB free. Looking at AboutThisMac->Storage->Manage, i see "System" using up nearly 300GB. However, looking at my SSD in finder, i cannot see any folders that would sum up to this size.Does anyone notice this as well and is there a workaround?radar://32782835
Post not yet marked as solved
I have a 4TB external drive. There are two partitions, 1 is 3TB and was converted from HFS+ Encrypted to APFS Encrypted (worked fine, it did have old Time Machine backups on it though), and I created a second bootable Sierra 10.12 install via createinstallmedia on the other one. After using the disk to install Sierra on a Macmini, the other partition no longer shows up.In 10.13 in Disk Utility, it shows it's an APFS on the pie chart, but the format is blank/not recognised. It's not recognised, won't mount or anything because something is corrupted. In fsck_apfs below you can see the hex "Invalid partition table. Error loading operating system Missing operating system" which doesn't make sense to me at all. So I don't know what happened to the container. Would createinstallmedia cause the issue?diskutil list/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *4.0 TB disk2
1: EFI EFI 209.7 MB disk2s1
2: Apple_APFS 3.0 TB disk2s2
3: Apple_Boot Boot OS X 134.2 MB disk2s3
4: EFI NO NAME 104.9 MB disk2s4
5: EFI NO NAME 104.9 MB disk2s5
6: Apple_APFS 799.8 GB disk2s6
/dev/disk3 (synthesized):
#: TYPE NAME SIZE IDENTIFIER
0: APFS Container Scheme +799.8 GB disk3
/dev/disk3s1 (external, virtual):
#: TYPE NAME SIZE IDENTIFIER
0: APFS Volume Empty +880.6 KB disk3s1sudo fsck_apfs /dev/disk2s20000: 33c0 8ed0 bc00 7c8e c08e d8be 007c bf00 |3...............|
0010: 06b9 0002 fcf3 a450 681c 06cb fbb9 0400 |.......Ph.......|
0020: bdbe 0780 7e00 007c 0b0f 8510 0183 c510 |................|
0030: e2f1 cd18 8856 0055 c646 1105 c646 1000 |.....V.U.F...F..|
0040: b441 bbaa 55cd 135d 720f 81fb 55aa 7509 |.A..U...r...U.u.|
0050: f7c1 0100 7403 fe46 1066 6080 7e10 0074 |....t..F.f.....t|
0060: 2666 6800 0000 0066 ff76 0868 0000 6800 |.fh....f.v.h..h.|
0070: 7c68 0100 6810 00b4 428a 5600 8bf4 cd13 |.h..h...B.V.....|
0080: 9f83 c410 9eeb 14b8 0102 bb00 7c8a 5600 |..............V.|
0090: 8a76 018a 4e02 8a6e 03cd 1366 6173 1efe |.v..N..n...fas..|
00a0: 4e11 0f85 0c00 807e 0080 0f84 8a00 b280 |N...............|
00b0: eb82 5532 e48a 5600 cd13 5deb 9c81 3efe |..U2..V.........|
00c0: 7d55 aa75 6eff 7600 e88a 000f 8515 00b0 |.U.un.v.........|
00d0: d1e6 64e8 7f00 b0df e660 e878 00b0 ffe6 |..d........x....|
00e0: 64e8 7100 b800 bbcd 1a66 23c0 753b 6681 |d.q......f..u.f.|
00f0: fb54 4350 4175 3281 f902 0172 2c66 6807 |.TCPAu2....r.fh.|
0100: bb00 0066 6800 0200 0066 6808 0000 0066 |...fh....fh....f|
0110: 5366 5366 5566 6800 0000 0066 6800 7c00 |SfSfUfh....fh...|
0120: 0066 6168 0000 07cd 1a5a 32f6 ea00 7c00 |.fah.....Z2.....|
0130: 00cd 18a0 b707 eb08 a0b6 07eb 03a0 b507 |................|
0140: 32e4 0500 078b f0ac 3c00 74fc bb07 00b4 |2.........t.....|
0150: 0ecd 10eb f22b c9e4 64eb 0024 02e0 f824 |........d.......|
0160: 02c3 496e 7661 6c69 6420 7061 7274 6974 |..Invalid.partit|
0170: 696f 6e20 7461 626c 6500 4572 726f 7220 |ion.table.Error.|
0180: 6c6f 6164 696e 6720 6f70 6572 6174 696e |loading.operatin|
0190: 6720 7379 7374 656d 004d 6973 7369 6e67 |g.system.Missing|
01a0: 206f 7065 7261 7469 6e67 2073 7973 7465 |.operating.syste|
01b0: 6d00 0000 0062 7a99 90e1 0713 0000 0000 |m....bz.........|
01c0: 0000 0000 0000 0000 0000 0000 0000 0000 |................|
. . .
01f0: 0000 0000 0000 0000 0000 0000 0000 55aa |..............U.|
0200: 0000 0000 0000 0000 0000 0000 0000 0000 |................|
. . .
03d0: 0000 0000 0000 0000 385b 3d00 0000 0000 |........8.......|
03e0: 0000 0000 0000 0000 0000 0000 0000 0000 |................|
. . .
04f0: 0400 0000 0000 0000 4b6e 0000 0000 0000 |........Kn......|
0500: 0000 0000 0000 0000 0000 0000 0000 0000 |................|
0510: bb6e 0000 0000 0000 0100 0000 0000 0000 |.n..............|
0520: 0100 0400 0800 0000 0000 0000 0000 0000 |................|
0530: 0000 0000 0000 0000 0000 0000 0000 0000 |................|
. . .
0ff0: 0000 0000 0000 0000 0000 0000 0000 0000 |................|
error: Device does not contain a valid APFS container.
Post not yet marked as solved
Is anybody else having a probelm pairing an Apple Pencil. I insert it into my new 2gen iPad Pro 12.9 and it briefly shows the dialog to Pair and then shows it connected, but then disconnects, and then I get an Error that the Pencil took to long to pair. Then it doesn't work.Am I alone in having this issue.Thanks,Nick
Post not yet marked as solved
I'm just getting into development on mac os and I made a simple app for the touch bar that allows you to change the color (with a nscolorpicker) of a label that is also on the touch bar.Now I would like to get the same effect on the actual window like so: I change the color using the picker on the touch bar and the color of the colorwell in the window changes as well.This is the code that I currently have for the touch bar actions:import Cocoa
@available(OSX 10.12.2, *)
class MainWindowController: NSWindowController {
@IBOutlet weak var cptHello: NSColorPickerTouchBarItem!
@IBOutlet var lblHello: NSTextField!
override func windowDidLoad() {
super.windowDidLoad()
/
cptHello.color = NSColor.white
setCol()
}
func setCol(){
lblHello.textColor = cptHello.color
}
@IBAction func colorPicked(_ sender: Any) {
setCol()
}
}This piece of code resides in MainWindowController.swift which is paired with the window controller.In the view controller, I have a single NSColorWell that I would like to change the color for inside the function "setCol()". I created an outlet in the view controller for it like so:@IBOutlet var cwHello: NSColorWell!So ideally what I want to achieve is something like this: func setCol(){
lblHello.textColor = cptHello.color
ViewController.cwHello.color = cptHello.colr
}Can this be done at all?
Post not yet marked as solved
My iPhone 7+ is reporting full storage - when I explore further and look in manager storage - the very bottom item called "System", is consuming all available storage, right now it is 13.54GB. In this state Mail will not sync, apps will not update and new apps cannot be installed.It has done this numerous times, and seems to come and go (since the first beta release).Anyone else experiencing this?Thanks!
Post not yet marked as solved
I had the intention of designing an audio routing app for the iPhone. My goal was to pair my iPhone (ME344LL/A) to a computer (MBP 11,1) and send audio over Bluetooth to the iPhone.My problem is that my computer wont pair to my iPhone as an audio device. I looked into the Bluetooth profiles and it appears that if I can manually set the profile on my iPhone then my computer can pick it up.This must be possible, maybe not by default but I must be able to override the iOS defaults. Thank you for any help anyone can provide!
Post not yet marked as solved
Since upgrading my iMac to High Sierra Beta I somtimes got the 'Disk not ejected properly' from my Thunderbolt 2 raid (still HFS filesystem).After now connecting my USB 2 external disk to back up after about a minute or two it started to constantly connect and disconnect (Hole list of "Disk not ejected properly" in notifications).Connecting both disk to my Sierra MacBook Pro does not show this behavior. Any idea what is triggering this?
Post not yet marked as solved
I enrolled an Apple Developer Account since yesterday and it still pending. I wonder how long it takes to get approve from Apple? Please share your experience.And enroll message this :Purchase your membership.To continue your enrollment, complete your purchase now.Your purchase may take up to 48 hours to process. Help me Thank you
I would like to create a macOS app without using Interface Builder.How must the Xcode macOS app template be modified after deleting Main.storyboard and its corresponding Info.plist lineto show a single simple window at startup?
Post not yet marked as solved
I've created a new Xcode project and I added a new Custom Keyboard Extension Target by using Editor > Add Target > Custom Keyboard Extension.Then, I ran that default templated keyboard on my real device (not happened in simulator). And I opened Instruments > Allocations application to profile memory allocations of extension.When I was trying the keyboard on WhatsApp, I've noticed that number of Persistent ViewController objects were increased while hide/unhide the keyboard by tap on the outside of the keyboard and tap input area.Number of Persistent KeyboardViewController:2 -- hide -- > 1 -- show -- > 3 -- hide --> 2 -- show --> 4 (increasing)I was trying the keyboard on iOS Messages app too. And there was no duplication.1 -- hide --> 0 -- show --> 1 -- hide --> 0 ( its ok )Do u have any idea about this issue ? Why WhatsApp application duplicates the keyboard extension viewController.
Post not yet marked as solved
Our iOS app has been in the status 'Waiting for review' for almost 10 days. This is really frustrating and damaging to our business and users. Has any one else experiened something like this? In my time as a developer i have come across 5-6 days review time tops.