Search results for

smb big sur

11,741 results found

Post

Replies

Boosts

Views

Activity

NSOperationQueue and NSOperation memory leak
Hi,I'm developing an uploader of with NSOperations. I got it to work with NSURLSessionConfiguration using background config, but it is buggy beacuse some of the memory leak that I'm experiencing with NSOperation.my code is kind of big to post it here but If you want I can do that. I'll try to explain overall what I'm doing.I have a UploadOperation that depends on a ConvertFile Operation. I have a NSOperationQueue configure like this: self.uploadQueue = [NSOperationQueue new]; self.uploadQueue.name = @Upload Process Queue; self.uploadQueue.maxConcurrentOperationCount = 4; self.uploadQueue.qualityOfService = NSOperationQualityOfServiceUserInitiated;The upload only starts after the file is successfuly converted... OK...Now the uploadOperation kicks in.. it reads to a NSData like so NSData* data = [[NSData alloc] initWithContentsOfFile:self.pathFile]; and the I create the request ... and add it to the background NSURLSessionUploadTask and the even clear the nsdata, the request and the body from the main(
3
0
1.8k
Oct ’15
Reply to XCUITest
I have a `UIView` animation with animation option `Repeat`. It is causing the app to never be quiesce. This animation isn't really a big battery drain, and CPU level seems fine.Any idea if this is a bug, or such animations must be disabled during UI Testing? (since it seems UI Tests work well with navigation animation)let radarCircle = CircleView(frame: bounds) addSubview(radarCircle) let baseCircle = CircleView(frame: bounds) addSubview(baseCircle) UIView.animateWithDuration(1.5, delay: 0.0, options: .Repeat, animations: { radarCircle.transform = CGAffineTransformMakeScale(2, 2) radarCircle.alpha = 0 }, completion: nil)Thanks,Maz
Nov ’15
Reply to iTunes sales and trend update late. anybody have notices?
I rarely use iTC to check those stats...long time now because I got tired of it lagging and being a pain to use, etc. Instead, I use AppAnnie, especially for daily reports.I just received Friday's numbers that show a big revenue jump, as an example, so it's one day behind, which makes me agree that Apple might be holding all Sat. numbers because of tvOS - perhaps to avoid bad news if those are poor?Maybe iTC simply can't handle a time change...
Nov ’15
Reply to submitting iOS app to AppStore
Primary:- Yes- Your choice based on what those changes are (big now, small together later?) and your tolerance for the process vs. your user's tolerance for update frequency.Regarding:- ?- Depends on the app and what you've already applied, so if you can give details...- Good start- It is a terribly non-trivial process, with far too many details and variations on details to cover here in general - I'd suggest to be patient, don't guess and keep expectations low, at least until you have more experience getting apps into the store- 100 per year - see the iTunes Connect Developer Guide on testing your app
Nov ’15
[#23349003] Apple TV App Store, Needs a 'New Releases' section, in these EARLY STAGES to foster tvOS APP ECOSYSTEM
I strongly encourage my fellow Apple TV developers to duplicate the bug report.bug# 23349003Please add a simple 'New releases' section at the bottom of the App Store app on the new Apple TV to list apps by release date. Not only would this encourage developers to create amazing apps.. it provides them a platform to exhibit their work. Give them a moment of spotlight, no matter how little that is. That's what all the developers want, to connect with the customer and help them discover their apps. This also allows customers to discover latest apps and games from 'small-time' 'indie devs'. Not everyone can make a AAA game, unlike big studios. Small-time indie devs need a chance to exhibit their work too and deserve some time in the 'Spotlight'. Neither do they a huge marketing budget either, unlike major studios.For fostering the future of Apple TV App ecosystem, atleast at these nascent stages of the platform, please add a NEW RELEASES section to the App Store. This will only encourage app developers t
0
0
153
Nov ’15
Reply to Unable to setenv DYLD_LIBRARY_PATH using launchctl command on El Captian.
Just to voice my discontent, this has to be one of the craziest (I replaced the word I really wanted to use) security changes. For the longest time I've advocated OSX-based macs as excellent development platforms for multi-platform, Linux software. In one fell swoop Apple seems to have killed this for now. Do I own a powerful linux-like laptop or a phone with a big screen? If at least the manpage for dyld would mention this little fact about now not ever exporting dyld_library_path, I might have saved a day or two of troubleshooting this.
Nov ’15
Reply to Sales....
The big conundrum of this App Store:It's really ashame that nobody is getting the customary App Store Bump by getting in early into the app store, except the featured apps guys.Here is the difference this time around:1. Zero install base of the device.2. All of the scantly stocked categories were hidden, so the press won't be crying about an anemic App Store.This also has me assuming that when they finally make the categories visible; Apps accepted on the first days will show up laston the list. So, there will likely be zero face time in the store for the early submitters. So, you will likely remain invisible.So, I guess the real reward was getting the free TV device:)
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’15
TableView UserDefaults 'unexpectedly found nil while unwrapping an Optional value'
Hello there!I am currently facing a relatively big problem of mine, and I can't seem to figure it out. You see, I am currently displaying data from my user defaults in my table view, and when I click one of these items - I get an error like this:fatal error: unexpectedly found nil while unwrapping an Optional valueThis is the code I am using; override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { if segue.identifier == selected { let VC5 : ViewControllerFive = segue.destinationViewController as! ViewControllerFive let indexPath = self.tableView.indexPathForSelectedRow if let nText = self.myDefs.objectForKey(Name)?.objectAtIndex(indexPath!.row) as? String{ VC5.tText = Your name: + nText } self.tableView.deselectRowAtIndexPath(indexPath!, animated: true) }This seemed to work for about a week ago, until I decided to re-design my user interface completely. If it's relevant, I can also post the other code related to my table view:func tableView(tableView: UITableView, numberOfRowsI
8
0
3.1k
Nov ’15
Reply to Multiple Developers at One Company?
I feel like there's two or three different problems that you're asking about, all mixed up together.First off, if your media relations folks have control of the account and are preventing everyone else from doing useful things, then you have a major administrative problem at your university, and need to solve that at an administrative level. As a business entity, the university should only need one business developer account (for publishing applications in the App Store publicly), one university account (for internal use by the students in software development classes) and one enterprise account (for internal use by the faculty and staff). If your university is big enough to be multiple separate businesses, or you want to argue with Apple that you are, that's an argument you need to have with Apple.Second, why on Earth would your students want to publish applications through your university account when they could just as easily (their own developer account would be $100/year, and compared to tuition
Nov ’15
Reply to Persistent storage includes Bundle Resources?
Thanks for replying, but this seems to contradict many things I am reading. For example, in http://www.appcoda.com/tvos-introduction/This is very different from that on iOS because you cannot have images, graphics, etc that are over 1MB in size.If you are right, then what is the limit per file? Assuming I stay within the limit of 200MB, can I have says video files that are 20MB big? 50MB?
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’15
What is PMT descriptor of H.264 encrypted streams in TS.
https://developer.apple.com/library/prerelease/ios/documentation/AudioVideo/Conceptual/HLS_Sample_Encryption/TransportStreamSignaling/TransportStreamSignaling.html#//apple_ref/doc/uid/TP40012862-CH3-SW1As per the documentation from apple descriptor of of the sample-aes encrypted video stream should be 'zavc'The stream_type value in the PMT must be set to 0xdb. In the descriptor loop following the ES_info_length field, a private data indicator descriptor must be added with its big-endian private_data_indicator value set to 'zavc'.but while parsing the encrypted sample we are gettingstream_type : 0xdband descriptor as acvdThis encrypted stream has been provided from apple and can we consider this video stream is not encrypted or the descriptor value is given wrong in specification.
0
0
695
Nov ’15
Reply to My in-app purchases are not working
THanks PBK, for your feedback, yes we are working with the developer as he is still contracted to build the Android version of the app and 6 mounths of support, for the app's. Problem is he keeps us in the dark and ignores any of our correspondence. I'd understand if it was a one man show and only doing it part time, but this is a big company with over 300 apps built. I will not name and shame the company as we are giving them an opportunity to redeem themselves.we don't know how many users are getting a fully functioning app and how many are having the problem, i personally can't even get my app working on my devices.thanks for your feedback mate.
Topic: App & System Services SubTopic: StoreKit Tags:
Nov ’15
Reply to My in-app purchases are not working
If this happens every time, and the application never enables content unlocked by the In App Purchase, then the developer never completed the initial delivery to you. If your customers are being charged, and never received what they paid for, that is a big problem and you should remove the app or In App Purchase from sale until it is resolved.You need the original developer to finish the job, or you need to obtain the full source code and find another developer who can.If the problem does not happen every time, then you you need a competent developer who you trust and can communicate with to troubleshoot what is happening. Actually, you need that anyway, and should escalate this issue within the organization you mentioned until the issue is resolved. Based on what you describe, you are not getting what you paid for.
Topic: App & System Services SubTopic: StoreKit Tags:
Nov ’15