Hello everyone,
I'm very frustrated with this problem. After one week of waiting my universal iPad app has been rejected because "is crashing on launch on iPad running iPhone OS 3.2 and iPhone 3GS running iPhone OS 3.1.3 and Mac OS X 10.6.2."
Unfortunately I can't replicate the problem, I've tested in debug and release modes and the app works just fine. I even created an ad-hoc configuration and test it in other devices and everything works fine.
I should clarify that this is an update to a current iPhone application and I'm using the same distribution profile as the original iPhone app. Also, I checked everything before building the universal app following this entry:
http://iphonedevelopment.blogspot.com/2010/04/converting-iphone-apps-to-universal.html
Here are the crash logs that Apple sent me:
Incident Identifier: 3E0D4A3B-2896-444D-BCBE-6C0CA1A66A90
CrashReporter Key: 18b5124ea5f657227c5f202a27ed707379b3e2e7
Process: Transfer [982]
Path: /var/mobile/Applications/E9062465-7EA6-424C-9C61-D9DBCC7C915A/Transfer.app/Transfer
Identifier: Transfer
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2010-05-04 15:35:57.399 -0700
OS Version: iPhone OS 3.1.3 (7E18)
Report Version: 104
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x00000001, 0x3eaa2188
Highlighted Thread: 0
Backtrace not available
Unknown thread crashed with ARM Thread State:
r0: 0x00002f90 r1: 0x00000000 r2: 0x385242d8 r3: 0x0000010d
r4: 0x00000000 r5: 0x00000000 r6: 0x00000000 r7: 0x00000000
r8: 0x2ffffba0 r9: 0x2fffef90 r10: 0x00000000 r11: 0x00000000
ip: 0x0000000c sp: 0x2ffffba4 lr: 0x2fe08727 pc: 0x00002f94
cpsr: 0x40000010
Binary Images:
0x1000 - 0x25fff +Transfer armv7 /var/mobile/Applications/E9062465-7EA6-424C-9C61-D9DBCC7C915A/Transfer.app/Transfer
0x2fe00000 - 0x2fe24fff dyld armv7 /usr/lib/dyld
....
And the one for the iPad:
Incident Identifier: 3B170A28-C8E2-4018-8166-E69432A65070
CrashReporter Key: 4a0194e3f60559127faef2b014df605e4c47b981
Hardware Model: iPad1,1
Process: Transfer [533]
Path: /var/mobile/Applications/400EE394-7BEE-45CA-942D-DBDC106360FF/Transfer.app/Transfer
Identifier: Transfer
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2010-05-04 15:37:17.505 -0700
OS Version: iPhone OS 3.2 (7B367)
Report Version: 104
Exception Type: 00000020
Exception Codes: 0x8badf00d
Highlighted Thread: 0
Application Specific Information:
com.erclab.iphone.photodownload failed to launch in time
elapsed total CPU time (seconds): 1.150 (user 0.560, system 0.590), 6% CPU
elapsed application CPU time (seconds): 0.150, 1% CPU
Thread 0:
0 libobjc.A.dylib 0x33561996 0x33560000 + 6550
1 libobjc.A.dylib 0x33564986 0x33560000 + 18822
2 libobjc.A.dylib 0x33564cb2 0x33560000 + 19634
...
The app does not do anything other than loading a local HTML into a web view after the app it's launched so I don't understand why it says "failed to launch in time"
Any help will be very much appreciated.
I'm working w/ a function that expects a string formatted as a utf-8 encoded octet string. Can someone give me an example of what a utf-8 encoded octet string would look like?
Put another way, if I convert 'foo' to bytes, I get 112, 111, 111. What would these char codes look like as a utf-8 encoded octet string? Would it be "0x70 0x6f 0x6f"?
Thanks
Hi All,
I am a beginer in iphone application development. Is There anybody who can help me with some sort of codes to develop a alarm clock in xcode for the iphone.
Thanks in advance.
Koushik Podder
I have some STI structure like following:
class Box
has_many :part,:class_name = "Part"
end
class Part
def self.dosomething()
end
end
class TypeA<Part
def self.dosomething()
end
end
class TypeB<Part
def self.dosomething()
end
end
assuming we have some codes like boxtypeA = Box.new. I am wondering if there is a way to make boxtypeA.part.dosomething() to call TypeA's method not Part's or TypeB's. I think basically what we need to do is to convert the part to TypeA, how can we achieve that?
Thx in advance!
I have some STI structure like following:
class Box
has_many :part,:class_name = "Part"
end
class Part
def self.dosomething()
end
end
class TypeA
class TypeB
assuming we have some codes like boxtypeA = Box.new. I am wondering if there is a way to make boxtypeA.part.dosomething() to call TypeA's method not Part's or TypeB's. I think basically what we need to do is to convert the part to TypeA, how can we achieve that?
Thx in advance!
As the title said:
Is it possible to send an email (using php mail()) and after sending the email, auto redirect to another page. All the codes will be in single php file?
Code-wise, should be something like this:
if(mail(argument...)){
header("Location: www.google.com");
}
I think I would get a: "Error: header information already sent" or something like. But what if I want to send email and then auto-redirect on that page?? Possible?
Please Help me in this problem. I am getting ClaimsResponse Always Null. I am Seaching lots example for dotnetOpenAuth and also implement in local but it always return null. please send me detail why this happen?? i am using DotNetOpenAuth-3.2.0.9177 in asp.net. i want Email,FullName,Country from ClaimsResponse but i am not able to get it.
I have an addresses table with ZIP code field which has type VARCHAR.
I need to select all addresses form this table using ZIP codes range.
If I used next code:
select * from address where cast(zip as bigint) between 90210 and 90220
I get an error on fields where ZIP code cann't be cast as bigint.
How I can resolve this issue?
Is there a gem like 'Term::ANSIColor' which works with 256 color terminals? The perl script 256colors2.pl works great in my terminal, and I'd like to use some of these colors in my ruby scripts without manually inserting the ANSI codes.
In my country the online payments are not an old thing, the first time i saw a web application taking payments directly to a local bank account was last year.
So, Im a newbie coding web payment system.
My question is, what are the best practices to store creditcard information into the database...
I have many ideas: encrypting the creditcard, database security restriction, etc.
What have you done?
hey guys
i need to shorten or better to say ., harden my codes
this is my original code :
if ($type = "recent") {
$OrderType = "sid DESC";
}elseif ($type = "pop"){
$OrderType = "counter DESC";
}else {
$OrderType = "RAND()";
}
now how can i use markers like this :
$OrderType = ($type = "recent") ? "sid DESC" : "counter DESC" ;
i tried but i didnt know how to write elseif in operators
Programmers are strange people. We build things out of thin air, a part of our sanity and with weird codes that would make any grown sane man cry.
But sometimes, a programmer builds a program that is too weird even by their insane standards.
What program have you created that is weird and strange?
(One program per answer please)
<Placemark id="p1"></Placemark>
<Placemark id="p2"></Placemark>
<Placemark id="p3"></Placemark>
<Placemark id="p4"></Placemark>
hi,im using SimpleXMLElement in my php,
my question is,how do i get placemark id 3?
is that something like this ?
$xml->Response->Placemark['id=3']->AddressDetails->Country->CountryName;
thanks
Hi, I am facing issues with the special characters like ° and ® which represent the degree Fahrenheit sign and the registered sign,
when i print the string the contains the special characters, it gives output like this:
Preheat oven to 350° F
Welcome to Lorem Ipsum Inc®
Is there a way I can output the exact characters and not their codes? Please let me know.
in this page of tutorial : http://java.sun.com/javaee/6/docs/tutorial/doc/bnadu.html discuss about hello2 application on samples folder.
i download samples from this link and installed correctly:
https://glassfish-samples.dev.java.net/servlets/ProjectDocumentList?folderID=5214&expandFolder=5214&folderID=0
but "hello2" folder not on the "web" folder.
where is source codes for sun JavaEE6 Tutorial Volume I ?
thanks alot
I'm trying to put together some career-related resources and I need access to the Holland Codes/RIASEC that classifies interests and skills to occupations. I can find many sites that already do this, but I can't find raw data in a structured format. Is anyone aware of a source for this. It can be commercial with licensing fees, though free would be nice!
Thanks!
Hi all
What is the difference between this two codes?
class SomeClass
{
SomeType val = new SomeType();
}
and
class SomeClass
{
SomeType val;
SomeClass()
{
val = new SomeType();
}
}
Which metod is preferd?
Is there any plugin that let us record the editing session in ECLIPSE?
Say for example I want to learn from the best programmer how he codes in Eclipse etc, and we can replay how he does stuffs.
Hi all
What is the difference between this two codes?
class SomeClass
{
SomeType val = new SomeType();
}
and
class SomeClass
{
SomeType val;
SomeClass()
{
val = new SomeType();
}
}
Which method is preferd?
what is annotation class. what is the use of it in java/android.
In iphone Annotation is used to drop a pin on the map..
java has java.lang.Annotation package... what is the use of it? can i have a examples, tutorials,sample codes, etc?
I saw tools like reflector can easily translated IL back to C# code. So I was wondering how to protect my source code, especially in a country, where patent and copy right is not enforced well by goverment.
Thanks.
how i can set default value for DateTime in optional parameter?
public SomeClassInit(Guid docId, DateTime addedOn = DateTime.Now???)
{
//Init codes here
}