#development
1 messages · Page 320 of 1
I think its in pins
Check it out bro
Gloss over it
My advice- use a mac or hackintosh
And do app dev
Thats what i am doing right now
I use opencore and doing app dev with swift
I made this whole mod menu base in objective-c
Recommend you to start doing that beforehand you dive into tweak dev
all from scratch
Nicee!
Im good with obj-c now
It was my first big thing in obj-c but the syntax isnt that complicated
Yea its not
oh and that one I entirely codded in Filza directly on my phone while working at a gas station lmao
Legendary
hi, is using tweak.xm or tweak.x better for tweaks?
Tweak.x is for objective c
Tweak.xm allows you to use objective-c++
Unless you are going to be using objective-c++. Then .x is fine. Using .xm won’t make a difference if you are not going to be using objective-c++
To use Thinks like mshookivar. You will have to use .xm file extension because you are using objective-c++ @granite frigate
Heres more information about mshookivar https://iphonedevwiki.net/index.php/Hooking_Instance_Variables
How do you hook this swift method? I don't think I can use the conventional %init method here?
I have never actually hooked into a swift method.
You could ask kabir or capt
They are more knowledgeable and could provide you with more information regarding how to hook it properly
@nimble parcel any helps?
Tweak development on swift app feels being phased out now
We don't have a good tool to work with swifts
That’s because it is
Where is onion
Looking at the signature of that swift method it’s probably going to be pretty difficult to hook it conventionally
dang
where's kabirhook?
Generics, value types, tuples, it’s basically a textbook example of a “swifty” method
kabir hooker eta son
😂😂
Kek
What's the unconventional way, if there is?
MSHookMemory; you’ll need to overwrite the instructions
presumably MSHookFunction would work if your replacement was asm?
assembly
Ah I see
MSHookFunction(
(void *)sub_addr,
(void *)&replaced_addr,
(void **)&orig_addr);
}
MSHookFunction may assume a C calling convention which likely isn’t the case here
Something like this would work I guess
I think for libhooker at least, all registers and everything are preserved so I don't see why it wouldn't work
and even in the off chance that it doesn’t break atm it fully well could in the future
even scratch registers?
dunno
just remember cs saying registers were preserved which is why it can be used to hook msgSend when substrate cannot
msgSend is special in its own ways
libhooker is that good huh, I personally didn't try it yet
fair enough, hookmemory might be the better solution then
Swift methods have other constraints/invariants that can easily be broken if you assume a c calling convention
The way swift is built. Seems like hooking it is a fucking challenge
The bugs might be subtle enough that you usually won’t notice (eg throw not working) and it’ll be a nightmare to figure out what’s wrong
yeah for sure
there’s a lot of inlining too
built for performance, not dynamicism
I could imagine. I am learning swift right now and god damn😂
I think I made that word up, but you know what I mean
But it is good at what it does i guess
I never made the first step in properly learning C, since I've never have the needs yet
sounds passable enough that if you snuck it into a dictionary i doubt anyone would notice tbh
Is it hard coming from ObjC?
it’s a slightly different way of thinking though so don’t try and draw parallels for everything; embrace the swiftiness
Theres key differences but not too hard to grasp around
^
I can link you a series from stanford that teaches swift
Inside out
Yes please
TIL disney uses swift
This is the old swift course
btw, any good opensource tweak that uses MSHookMemory? http://www.cydiasubstrate.com/api/c/MSHookMemory/ is quite limited
Using swift 3. But teaches uikit
https://youtu.be/jbtqIBpUG7g this is latest swift 5 with swiftui
The first of the lectures given to Stanford University students who took CS193p, Developing Applications for iOS using SwiftUI, during Spring quarter of 2020.
Paul Hegarty covers the logistics of the course and then dives right into creating an iOS application (a card-matching game called Memorize). The Xcode development environment is used to...
I personally would go with uikit
Thanks, I'll surely have a look later
The hackingwithswift tutorials are great imo
^
Learn Swift by following 100 days of free tutorials
Those are too
Learn uikit instead of swiftUI
SwiftUI is not well developed enough at this point imo
Uikit is far more beneficial to learn
@nimble parcel i might start using HWS
I’ve considered it for SwiftUI too
Alright, thanks @nimble parcel & all , I should get back to the project
good luck :)
There’s a 100 Days of SwiftUI
Oh nice. I am not knowledgeable at UIkit
So i need to learn UIKit as well
Does the swift tutorial only teach swift or does it also bring along uikit
Lmfao i just got that
How do I assign readonly thing on init? I'm trying to hook macOS app using MacForge
Afaik you can’t assign values to readonly properties
Because they only have a get method. No set method. Might want to check macforge wiki or something
Or look at open source projects
yeah I'm doing that because MacForge wiki is suck
R/osxtweaks
Might want to check out if they have a discord
Or anything related to what you are trying to attempt
And can you even hook on macos?
yeah MacForge does that
here's one of a sample I'm watching rn: https://github.com/w0lfschild/colorMenu/blob/master/ColorMenuItems/ColorMenuItems.m
yeah
that's not bad lol
Words of the great dghost- Properties are usually synthesized with an instance variable, unless all the access methods are implemented. So if the class has specified an implementation for the getter than there won't be a instance variable.
If that method always returns the same value than all you need to do is hook it and make sure your changes only apply once, every other time, it should be returning your previously changed value. Which you can do by creating your own instance variable (or another property) that you setup once.

Good luck my friend.
actually I don't even have an objc experience
Exactly
nice
Show me the code
first error that something I saw earlier
Post the code. Error does not help
it's not that long
wut
yeah
Okay
wait
Make it a property
wdym making value myself
Are you creating that string?
I'm trying to hook this getter
does it give an error
no
Okay so it should be good
except this warning
So there is no init method
What line of code does it show it on
Did you interface it
Okay did you state the method there?
hello guys im taking donations for: https://i.imgur.com/tak8N36.png
yeah..?
don't use id
^
that's not my code

it was extracted
Rename it to instancetype
like this?

(Id) ostitlestring returns a nsstring
So therefore. Id is nsstring
(NSString *) ostitlestring
oh wow
btw I extracted that header using this
Yup thats fine
is it okay?
Yes
If you hook a method. How do you return original state of the method using macforge
?
-(void) method {
%orig;
}
This is how its done in logos
I think they're using this
yeah I think
Good luck man
Might want to start doing objective c app development before hand
Because you need to understand the language before you fuck with it
Take it from me
yeah definitely
but I don't know what course to start with
thanks
After this. Start developing and googling questions
Start by making simple things
And learning UIKit
Look at apple documentation
You can open up documentation from within xcode and also look at apples website
Good luck
wait when did I star that lol
Its a really good starting point for learning objc
Its what most people are going to recommend
You do not need a course
And make sure you go day by day. Its not a race
okay
It takes time to learn. You are not gojng to learn in a day
Its going to take months.
yeah objc has weird syntax so
Its your choice. Wether you are more interested in ios dev or mac os
I would personally go with IOS
it's impressive to me people still learn objc in 2020, jb community rly out here using decade old languages for everything
Keep in mind. Swift is built around objc
Its ideal to use objective c for tweak dev. But there are tweaks that are also built using swift which is not the ideal thing to do at the moment. In the future that might change @tepid olive
And objective-c is not that bad
syntax tho 
yeah agree
Not really a big deal after you get used to it. If you are coming from swift then it looks wierd. Since swift reads basically like english
Do you not like the syntax because you have to type it. Or its difficult to read?
difficult to read
True. Its just like any lanugage. Once you understand it, then its easier to read
Just like a language you speak.
It just matters what you are used to

@sick crane good job!
nice I can change other things too
macOS Big Mac
you want this?

not sure if it's allowed, but i'm using a swift array and a text view in swiftui that's running in ForEach. when i call the text view like this: Text(Array[index]) the compiler throws an error if the array is started empty. is there any way i can add a thing that makes it default to another value if the index value isn't available?
ty
bruh
duh
most apps are still written in objective c
cli tools for macos/ios are as well
? arent most apps in swift now
no
if you download apps from the app store, a large amount will be on objetive c
swifts promotion by apple is relatively new


true
I’d say it’s around 70% Swift atm

as for CLIs I’ve seen very few objc ones; most are C/C++ and Swift is becoming common too
Swift CLI tools nfr
depending on the types of projects youre looking at
yes and no
swift is higher level wrapper

objc is also pretty high level
but it will not die
C has been around since like 1970
and its still used a bunch
been 50 years
mfw C older than everyone on the server
yes
i see conflicting opinions on whether objc will die
obviously there wont be a clear cut answer so im gonna rephrase
what are the uses of objc that are popular today
I'll be honest, new apps being developed in objc seems to be few and far between
true
i still think there are definitely more objc apps in existence than swift apps
like
on the app store that i use day to day
Just did acid
oh wow

lol
ping the role with ID 355177530061357057
do <@&ROLE>
put in that number
press enter
i don't believe this to be true, unless ur using apps that haven't been updated in a while
i know snapchat uses objc tho mostly cuz they haven't finished their swift migration from what i heard
youtube, snap, twitter
discord
paypal
i’m just listing non swift apps
and the apps i use daily
only swift app i know i use daily is music app, and it’s 1/2 swift
still has objc and other.. stuff
literally
i think tune track is swift?
It is
i don’t use reddit any more tbh
too cringe
google translate nfr
i be using that for spanish
lol
dart
They’re the funky Google thing
no wonder they are so shit
they all feel clunky
Yep
If you open the classroom app on slow internet, it won’t
Open
It’ll just hang forever
ik

yeah the google apps are inspectable with flex
so they like
use some sort of thing
The MAC address I was using for staff network was taken out the filter, and the student network is capped at 50/50 for 1400 students

That’s how I got my login
wow school password
A retired staff laptop I was given
i just gave myself admin and looked at keychain lmfao
retards
let’s fucking go i did well on spanish finals
Yeah mine wouldn’t allow that
they have some intelligence
integer jules sad
I just had a staff laptop that had the network saved
So some fun in powershell == password + mac
allah
Yeah
LMAO


Hello! I was wondering how tweaks such as LowBatteryBanner and LowPowerBanner "know" when the device is at 20/10 percent in order to send the notification?
Like what header/public api method could I call?
they either hook what sends the alert or hook what sets the percentage
there is no public api
nfr.api
Is this the header that send the alert? SBAlertItemsController.h
Or is this it? SBLowPowerAlertItem
Or is it neither?
Thats fair
So I tried hooking SBAlertItemsController and used the method - (void)activateAlertItem:(id)item and then made an if statement for checking if SBLowPowerAlertItem was a class of SBAlertItemsController, but it did nothing :/
Unless I need to make an else statement and have what I want it to do be in the if and in the else
why would the SBLowPowerAlertItem be a item controller?
does that class even interface with the controller class?
Ah
so there is no chance that the low power alert item will be an alert item controller
instead, try checking if the item argument is a SBLowPowerAlertItem
So would the if statement be this then? if ([item isKindOfClass:[objc_getClass("SBLowPowerAlertItem") class]])
%hook SpringBoard
- (void)applicationDidFinishLaunching:(id)application {
%orig;
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(batteryLevelChange:)
name:@"UIDeviceBatteryLevelDidChangeNotification"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(batteryStateChange:)
name:@"UIDeviceBatteryStateDidChangeNotification"
object:nil];
}
%new
- (void)batteryLevelChange:(NSNotification *)notification {
if ([[UIDevice currentDevice] batteryState] == 2) { // batteryState==2 means it is charging, batteryState==1 should be discharging. You probably want to check only if not charging.
if ([[UIDevice currentDevice] batteryLevel] == 20) {
// Insert your code here
}
}
}
%new
- (void)batteryStateChange:(NSNotification *)notification {
if ([[UIDevice currentDevice] batteryState] == 2) {
// Use this to detect when a charger is plugged / unplugged
}
}
%end
sane
so u can install websites as apps now on windows 10 w/ edge
like the whole thing apple was tryna do on ios except it actually works
so discord/spotify work native here now
finally got the system reinstalled after a week lol
edge still sucks for everything else but firefox finally put out a windows arm build
ok but wen eta windows on linux kernel
you can dream

is there a way to search the contents of all files in a folder with filza?
grep
@unkempt seal Thank you so much!
Might as well use application did finish launching notification as well instead of hooking SpringBoard.
but grep searches a file does it not?
No, grep searches for content in specified path. you can do a recursive search to check all files in a folder.
east coast gang
must suck 
i don’t want it 
same, its supposed to be the biggest snow storm in the last 10 years for me 
we’re getting somewhere between 8-11 inches
cock?
im getting anywhere from 6 in to a foot and a half



@half walrus true
it went up hte past month
from 9k to 20k
damn POG
monero at 154
i need this to go to 2k
@tepid olive i took a big L
when it was 12k i put half into other coin

i wouldve had maybe triple or double my money ifi kept
pain
is ok XMR is rising at least too
Don't worry, I got paid $500 in bitcoin when it was at 12k and immediately withdrew it 🙃
f
hi guys i want to make a tweak to stop an app from connecting to a site

wym a site connecting to a site
oh right
you could probably get away with just hooking nsurlsession 
so i have an amazbit fit, and it uses the mi fit app to connect to a site to update the firmware, but i want to stop it from trying to check for the firmware and connect, should i ask the android people for mabye the api or something?
that sounds exactly like what i need
i captured the url with app firewall, does it make it easier to see the process?
sorry im a noob and idk if these are stupid q, but i want to develop my first tweak lol
if you have something like pihole just block the target addresses and that should suffice for the private realm.
besides that, it’s very ambitious and great to see your motivation but do you know any objc or just looking for quick ways to jam together a tweak?
well i can do hosts but i guess i want to start making stuff like this that i think other people will want
not to sound disheartening but you’ll have to know objc unless you’re after quick clout & jamming together (potentially) fucked up tweaks. No one will complain if they’re private, however for public release please do consider having polished work to your personal best extent.
i dont know any programming, but i think if i make it as a non flex tweak or something it may be able to patch other peoples without a jailbreak
should i just use flex and port it
with that premise it would probably be best if you’d just make a flex patch and release that
i want to learn programming but i never had motivation because everything i wanted was made lol
so yes i want to start learning
i mean, you’re free to start learning C and then jump to objective-c, but you’d preferably start with something easier like Java
you can go with python as well but Java’s inherent object-oriented nature will aid your understanding and the vast resource-pool of great instructions is helpful
since your target language for tweaks currently (objc) is just C with fancy objects
could i just figure it out? i've done some scripting before, i thought that i could just look at the process in a terminal, and figure out which one to disable from the calls
in general with something as network pentesting your approach would work on a trivial level, this is reverse engineering. Dump the app, find the method and hook, to put it in layman’s terms.
which is why the focus of my advise it to not jump boat, but instead polish your skillset
i’d reiterate though, if you’re after a quick solution just publish a flex patch if you’re able to @grizzled plaza
sounds like i should just make a flex tweak lol
you have the most vile name I've ever seen on discord, congrats
yeah i will do this slowly, should i sttart with android dev since its java based?
i noticed the quality of tweaks is much better now and more of them since ios 10
don’t focus on an operating system just because of the language, it won’t change the language’s perks and behavior, you can just code on your pc with ease
java is a good strart
java is good because of the syntax. but annoying as fuck to setup even with an ide
This project was created with the intention of preservation
how i started learning objc ^
that was the worst jailbreak i ever had, and this ios 13 one feels like magic like how ios 6 had everythig i wanted, i was wondering if it was from maybe tweaks being easier to make with swift or if it was checkra1n that allowed more people to have jb phones
tweaks haven’t changed from back then
oh so it has nothing to do with it, just more developers, you think it sfrom checkra1n?
which aren't really "tweaks" per se
@primal perch muted loser
i know that
Shepgoba speak if you are not retard

F
oh cool! where are these documents
ok so
on the internet, a google search away. theiphonewiki is still your home
what’s google
if you’re after objc
do you just want this one tweak/project or do you want to continue something like tweak or app dev
ok cool, yeah i mean i thought it was a repo where you all went like stackexchaneg
No that’s googol
google this dick
not sure tbh lol
No, you can just search for the language “Logos” on github and you’ll find plenty of tweaks with or without documentation
ok time to eat bbq fried chicken sandwich
True
are you gonna learn or just jam something together

well im gonna jam this together and when i learn more i will rewrite it
would recommend learning objc first
I’m not looking forward to your tweak
Bad start
and I sincerely hope you exit this community soon

This project was created with the intention of preservation
you said i should just use flex to maek it though
flex patch != “proper” tweak
then make tweak
that doesn’t suggest just jamming shit together not knowing
well thats my point, i want to make sure i don't have anxiety from my watch updating, i guess if you are worried about poor quality tweakrs i wont releaes it
but can you make 100% swift tweaks? @robust radish is fine but do you need objc
fuck
i didn't intentionally ping lmfao
srry
It’s not about releasing it or not, it’s the fact that it’s your work and you should hold yourself to certain standards
mr @.objc
I personally don’t give a fuck to be blunt, the issue I have is that too many people roll in here expecting a spoonfed answer on how to become a superstar dev in minutes and that’s just not how it works
and people don’t need low quality things pushed in their faces imho
over the long term i want to make it better but i do want to do something about it now
so you thinki i shoujd just block it via hosts or someting and then learn better and make it properly
then please do walk the long route of learning and asking here “how to do xyz in objc” and grow your knowledge if you’re ready to learn objective-c. In the mean time, please learn about Object-Oriented programming, try java or python and feel free to ask here, we will help you get into it
you guys are right, i don't expect to be a clout chaser but if i make something i should make it good
i have the 2nd edition of c with me, and i have a lot of android phones so i will give java a try
the origin
good luck on your journey, we’ll be here for questions (not all the time). Please do consult stackoverflow, udemy or youtube if you’re having troubles
@vivid dew shalom
I have returned from a 2 week jewish conversion therapy
@restive ether shalom [redacted]
to become jewish or to become a different religion
@tepid olive Yes
who
so there's a rainmeter build for arm64

mood
ha I wish

Hello! if im using an if statement like this: if ([[UIDevice currentDevice] batteryLevel] == //value) what would the value be? Would it be 70 (for 70%) or .70 (for 70 as a float), since the apple docs say the batteryLevel property is a float.
The docs explain the range
So I would compare using 0.0 - 1.0 ?
Yes
Okay, thank you!
One last thing, do I need to put the 0 in front of the 0.70, or can I just put .70
doesn't matter
compiler will figure it out and if it cant it'll yell at you and tell you what to fix
Suggestion for Dragon: Use text to speech for errors
Make it yell at you tho
Exactly
Like Warhammer heathen yelling
i would say that’s factual
but why are you making fun of jews like that

Please don’t use the J word
day 1 of hacking with swift
:frjew:
multiple times
@gaunt mesa today alone 150
for piracy, slurs, and filter bypass

The way to not spend all day on discord is to turn off notifications and completely close it on your computer thats the only way
shmoo cat profile pic but coal version
i do not see that message
i think i’ve got the whole spectrum for warns now
nsfw, slur, filter bypass, piracy
if retard was filtered like half of the server would be banned by now 
If You Know You Know
If you're actually trying to figure out how to get started learning code, check out my other videos.
-
How To Code A Bot:
https://youtu.be/bxpI0iNZTU4 -
How To Become a Frontend Web Developer for 2021:
https://www.youtube.com/watch?v=M6SJWVOhZdM&t=67s -
How I Became a Software Engineer Without A Degree:
https://www.y...
Facts
😂😂
I know
I'm just saying
technically that's a slur too
no
yes it is
if you think r word is a slur youre retarded
they used to filter cracker which makes even less sense lol
cracker is both a slur and piracy talk
so
not surprised at all that someone who casually the n word around thinks this way 
it is not a slur
retard
then cracker is not a slur either
it is
look it up
random white guy on the internet being offended by someone calling them a cracker != decades of racism and slavery which is the history behind the n word
and I'm white so 
cracker is related to slavery dumbass
it literally means a white person who owned and beat slaves
whip cracking
cracker
key word, owned slaves
yes
you think slave owners deserve respect

are you fucking braindead
george washington owned slaves
that was the standard for the time
culture and society has changed
I'm literally white but like black people coming up with a term for people who literally held them in inhumane conditions as fucking slaves isn't even nearly as bad as the n word which was already used long before against black people
that doesn't mean it's not racist
yes?
thats true?
why are you arguing about n word now
i never said it wasnt slur
oh i was talking about the retard word
thats why i said
"it is not a slur"
"retard"
i was talking about "retard"
lmao
i wasnt talking about n word

the "retard" message was referring to the word retard
I know that just saying you're a bit hypocritical but whatever it's pointless to argue more over this lmao
you are now cancelled sir
Carson please chill out br0
the council of twitter elders is not happy
someone explain why tf i have two iphones on me rn
three actually
rich
who
who

got them free smh my head
carson is cancelled br0
cancelled
cancelled


so i’m canceled for saying retard isn’t slur
?

dream is cancelled for that so you too sir

dream sucks tho
TRUE
inb4 dream stans murder me
dream youtube
nightmare youtube
so tldr; n word is slur, r word is not
old dream vids are fine
his new stuff is cringe
and his mrbeast shit
smhh
Did someone say n word isnt a slur😂
I'm a slur for broke bitches
I have a warning for saying the n word
lmao same
Which is dumb😂
I mean i m not saying it in a derogatory way
what anarchy
9b
what
is that shit
I just said “n what”
anarchy minecraft server
i did l2x9 before but it got corrupted, gave up on it
anarchy is too messy
You can say chigga
inb4 slur+filter bypass
literal please unplug your modem
true
9b is for people who dont want to wait 12 hours in queue for 30 minutes of playtime at 5 tps
true
also stop the fitfam cringe
anarchy is really shit usually
haven't tried 9b but apparently all servers i try are constantly ddosed or broken
WHY IS THE INTERNET SHIT
tbh 9b is fine
17.5 tps rn
.

I am not going to get canceled for saying chigga
well
Say it a fourth time maybe it will be funny
demolished
Wassup my chiggas
tf server is that

interesting
that’s not even his name anymore
thats not the server its 9b9t @indigo peak
so is this just 2b2t but + 7
does anyone know how to get rid of the top right view thing
in storyboard
its really annoying
its so annoying
Burrit0z you are the biggest racist i know
wtf how

you say because i am asian?
You said [redacted]
false
And you are underage too which instantly makes you racist

Sir you know you’re under oath right

what do you think

Not funny didn't ask
can I have the 3090
The jury has already decided
yeah just throw your mac to nvidia factory
oh
we all know i can’t be racist
i’m not white
i’m asian
only whites can be racist
all whites are
/s obviously

did you just intjbeer
you can still be racist towards black people 
did you not see the /s
did you not see the 
true
the meaning of fr has been reduced to nothing
just like uhh
true
they can mean anything and everything
lol
fr is a boy of course
bro playing hypixel w shaders so good
cum
sues shaders good
literally so smooth and nice
i think my wifi card is broken
or at least the drivers
i have to reset it daily cause it drops connection
project 1 is complete
good job
thanks bro
gotta respect the effort, you’re already putting in more than most people do
yup, trying to learn swift and also gain a substancial understanding of UIKit and then maybe i will start doing tweak development as well later on.
shoutout to @twilit jungle
shut upo
is there a way to get the parent object of something with objective-c? Google says no but all this is like 4 years old, I don't know if they changed anything since then

@twilit jungle i am trying to do a challenge listed in hacking with swift. so what i am trying to do is tell my DetailViewController which holds the UIImageView to change the title of the navigation bar as Picture X of Y. where X is the selected image index in the array and Y is the total number of images. if i selected 2nd image out of 9 images. it would show as Picture 2 of 9.
the problem is i have to get that information from my mainviewcontroller to my detailviewcontroller
in my detail view controller i wrote let vc = ViewController() print(vc.pictures.count) where pictures is an array that holds the name of all images in my project and the console shows it as an empty array
but in my main view controller i can print that same array count with no problem
You created a new instance

what would be the right way of going about this
1660 super
lmao
i get 100 fps still
with vsync it feels fine
imagine seus
class ViewController: UITableViewController {
var pictures = [String]()
override func viewDidLoad() {
super.viewDidLoad()
title = "Storm Viewer"
navigationController?.navigationBar.prefersLargeTitles = true
let fm = FileManager.default
let path = Bundle.main.resourcePath!
let items = try! fm.contentsOfDirectory(atPath: path)
for item in items {
if item.hasPrefix("nssl") {
pictures.sort()
pictures.append(item)
// this is a picture
}
}```
this is the main view controler
from which i want to print picture.count from

the fuck
wait wdym
he actually lived in Uganda for a few years, he shared his experiences and it was very interesting
I want to get the count of the array named picture from that viewcontroller to my other view controller
So i want to access that property from my other view controller
will that count ever update?
racism bad
or will it stay constant in the view controller
The count will not update
i make offensive jokes but i do not discriminate based on your race
i mean if u want u could do proper MVC
Theres select number of images so it will be a constant
or just pass in that count in the constructor
jk love you
wow so i stated my race and my last name
This is my first project lol
both of which are public
alright don't do delegates then 
? i said renai tare?
just make an alternative constructor
No idea what that is
Yes
are you taking about me?
i’m confused
oops i meant u*
u don't have to hide my name its literally public
oh
ok dopeboy one sec
picture of hentai
Learn Swift coding for iOS with these free tutorials
x is the selected picture index and y is the total number of images
the beginning of this will get u waht u need
okay thanks alot
np
what the fuck
why do dreams videos have so many cries
55 million
bro dream fans need to stop
fr but you’re not wearing glasses
:frblurry:

this is the worst possible take


















